// SPDX-License-Identifier: MIT
pragma solidity ^0.8.30;
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
interface IUniswapV3Factory {
function getPool(address tokenA, address tokenB, uint24 fee) external view returns (address pool);
}
library LauncherTypes {
struct Socials {
string telegram;
string twitter;
string discord;
string website;
string farcaster;
}
struct TokenConfig {
string name;
string symbol;
uint256 supply;
address pairToken;
address positionManager;
address dexFactory;
uint24 poolFee;
uint16 maxWalletBps;
uint16 maxTxBps;
uint32 restrictionBlocks;
}
struct TokenInfo {
address deployer;
string logo;
string description;
Socials socials;
}
}
contract LaunchToken is ERC20 {
error MaxWalletExceeded(address account, uint256 balanceAfter, uint256 maxWallet);
error MaxTxExceeded(address account, uint256 amount, uint256 maxTx);
error LaunchBlockBuyBlocked(address account);
LauncherTypes.TokenInfo private _tokenInfo;
mapping(address account => uint256 amount) private _originBought;
address public immutable launchFactory;
address public immutable pairToken;
address public immutable positionManager;
address public immutable dexFactory;
uint24 public immutable poolFee;
uint16 public immutable maxWalletBps;
uint16 public immutable maxTxBps;
uint32 public immutable restrictionBlocks;
uint256 public immutable launchBlock;
uint256 public immutable restrictionEndBlock;
uint256 public immutable maxWalletAmount;
uint256 public immutable maxTxAmount;
constructor(LauncherTypes.TokenConfig memory config, LauncherTypes.TokenInfo memory info)
ERC20(config.name, config.symbol)
{
launchFactory = msg.sender;
pairToken = config.pairToken;
positionManager = config.positionManager;
dexFactory = config.dexFactory;
poolFee = config.poolFee;
maxWalletBps = config.maxWalletBps;
maxTxBps = config.maxTxBps;
restrictionBlocks = config.restrictionBlocks;
launchBlock = block.number;
restrictionEndBlock = config.restrictionBlocks == 0 ? block.number : block.number + config.restrictionBlocks;
maxWalletAmount = (config.supply * config.maxWalletBps) / 10_000;
maxTxAmount = (config.supply * config.maxTxBps) / 10_000;
_tokenInfo = info;
_mint(msg.sender, config.supply);
}
function liquidityPool() public view returns (address) {
return IUniswapV3Factory(dexFactory).getPool(address(this), pairToken, poolFee);
}
function maxWalletLimit() external view returns (uint256) {
return maxWalletAmount;
}
function maxTxLimit() external view returns (uint256) {
return maxTxAmount;
}
function getTokenInfo() external view returns (LauncherTypes.TokenInfo memory) {
return _tokenInfo;
}
function deployer() external view returns (address) {
return _tokenInfo.deployer;
}
function logo() external view returns (string memory) {
return _tokenInfo.logo;
}
function description() external view returns (string memory) {
return _tokenInfo.description;
}
function socials() external view returns (LauncherTypes.Socials memory) {
return _tokenInfo.socials;
}
function _update(address from, address to, uint256 value) internal override {
bool restrictionsActive = block.number > launchBlock && block.number <= restrictionEndBlock;
address pool;
bool onLaunchBlock = block.number == launchBlock;
if (restrictionsActive || onLaunchBlock) {
pool = liquidityPool();
if (pool == address(0)) {
restrictionsActive = false;
onLaunchBlock = false;
}
}
if (
onLaunchBlock &&
value > 0 &&
from == pool &&
to != launchFactory &&
to != _tokenInfo.deployer
) {
revert LaunchBlockBuyBlocked(to);
}
if (restrictionsActive && value > 0) {
if (from == pool && to != launchFactory && to != _tokenInfo.deployer) {
uint256 bought = _originBought[tx.origin] + value;
_originBought[tx.origin] = bought;
uint256 maxBuy = (maxTxAmount * 11_000) / 10_000;
if (maxBuy == 0 || bought > maxBuy) {
revert MaxTxExceeded(tx.origin, bought, maxBuy);
}
}
if (
from != address(0) &&
to != launchFactory &&
to != _tokenInfo.deployer &&
to != pool
) {
uint256 balanceAfter = balanceOf(to) + value;
if (balanceAfter > maxWalletAmount) {
revert MaxWalletExceeded(to, balanceAfter, maxWalletAmount);
}
}
}
super._update(from, to, value);
}
}[
{
"type": "constructor",
"inputs": [
{
"name": "config",
"type": "tuple",
"components": [
{
"name": "name",
"type": "string",
"internalType": "string"
},
{
"name": "symbol",
"type": "string",
"internalType": "string"
},
{
"name": "supply",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "pairToken",
"type": "address",
"internalType": "address"
},
{
"name": "positionManager",
"type": "address",
"internalType": "address"
},
{
"name": "dexFactory",
"type": "address",
"internalType": "address"
},
{
"name": "poolFee",
"type": "uint24",
"internalType": "uint24"
},
{
"name": "maxWalletBps",
"type": "uint16",
"internalType": "uint16"
},
{
"name": "maxTxBps",
"type": "uint16",
"internalType": "uint16"
},
{
"name": "restrictionBlocks",
"type": "uint32",
"internalType": "uint32"
}
],
"internalType": "struct LauncherTypes.TokenConfig"
},
{
"name": "info",
"type": "tuple",
"components": [
{
"name": "deployer",
"type": "address",
"internalType": "address"
},
{
"name": "logo",
"type": "string",
"internalType": "string"
},
{
"name": "description",
"type": "string",
"internalType": "string"
},
{
"name": "socials",
"type": "tuple",
"components": [
{
"name": "telegram",
"type": "string",
"internalType": "string"
},
{
"name": "twitter",
"type": "string",
"internalType": "string"
},
{
"name": "discord",
"type": "string",
"internalType": "string"
},
{
"name": "website",
"type": "string",
"internalType": "string"
},
{
"name": "farcaster",
"type": "string",
"internalType": "string"
}
],
"internalType": "struct LauncherTypes.Socials"
}
],
"internalType": "struct LauncherTypes.TokenInfo"
}
],
"stateMutability": "nonpayable"
},
{
"name": "ERC20InsufficientAllowance",
"type": "error",
"inputs": [
{
"name": "spender",
"type": "address",
"internalType": "address"
},
{
"name": "allowance",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "needed",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "ERC20InsufficientBalance",
"type": "error",
"inputs": [
{
"name": "sender",
"type": "address",
"internalType": "address"
},
{
"name": "balance",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "needed",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "ERC20InvalidApprover",
"type": "error",
"inputs": [
{
"name": "approver",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC20InvalidReceiver",
"type": "error",
"inputs": [
{
"name": "receiver",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC20InvalidSender",
"type": "error",
"inputs": [
{
"name": "sender",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC20InvalidSpender",
"type": "error",
"inputs": [
{
"name": "spender",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "LaunchBlockBuyBlocked",
"type": "error",
"inputs": [
{
"name": "account",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "MaxTxExceeded",
"type": "error",
"inputs": [
{
"name": "account",
"type": "address",
"internalType": "address"
},
{
"name": "amount",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "maxTx",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "MaxWalletExceeded",
"type": "error",
"inputs": [
{
"name": "account",
"type": "address",
"internalType": "address"
},
{
"name": "balanceAfter",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "maxWallet",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "Approval",
"type": "event",
"inputs": [
{
"name": "owner",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "spender",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "Transfer",
"type": "event",
"inputs": [
{
"name": "from",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "to",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "allowance",
"type": "function",
"inputs": [
{
"name": "owner",
"type": "address",
"internalType": "address"
},
{
"name": "spender",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "approve",
"type": "function",
"inputs": [
{
"name": "spender",
"type": "address",
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "nonpayable"
},
{
"name": "balanceOf",
"type": "function",
"inputs": [
{
"name": "account",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "decimals",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint8",
"internalType": "uint8"
}
],
"stateMutability": "view"
},
{
"name": "deployer",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "description",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "dexFactory",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "getTokenInfo",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "tuple",
"components": [
{
"name": "deployer",
"type": "address",
"internalType": "address"
},
{
"name": "logo",
"type": "string",
"internalType": "string"
},
{
"name": "description",
"type": "string",
"internalType": "string"
},
{
"name": "socials",
"type": "tuple",
"components": [
{
"name": "telegram",
"type": "string",
"internalType": "string"
},
{
"name": "twitter",
"type": "string",
"internalType": "string"
},
{
"name": "discord",
"type": "string",
"internalType": "string"
},
{
"name": "website",
"type": "string",
"internalType": "string"
},
{
"name": "farcaster",
"type": "string",
"internalType": "string"
}
],
"internalType": "struct LauncherTypes.Socials"
}
],
"internalType": "struct LauncherTypes.TokenInfo"
}
],
"stateMutability": "view"
},
{
"name": "launchBlock",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "launchFactory",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "liquidityPool",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "logo",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "maxTxAmount",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "maxTxBps",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint16",
"internalType": "uint16"
}
],
"stateMutability": "view"
},
{
"name": "maxTxLimit",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "maxWalletAmount",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "maxWalletBps",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint16",
"internalType": "uint16"
}
],
"stateMutability": "view"
},
{
"name": "maxWalletLimit",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "name",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "pairToken",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "poolFee",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint24",
"internalType": "uint24"
}
],
"stateMutability": "view"
},
{
"name": "positionManager",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "restrictionBlocks",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint32",
"internalType": "uint32"
}
],
"stateMutability": "view"
},
{
"name": "restrictionEndBlock",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "socials",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "tuple",
"components": [
{
"name": "telegram",
"type": "string",
"internalType": "string"
},
{
"name": "twitter",
"type": "string",
"internalType": "string"
},
{
"name": "discord",
"type": "string",
"internalType": "string"
},
{
"name": "website",
"type": "string",
"internalType": "string"
},
{
"name": "farcaster",
"type": "string",
"internalType": "string"
}
],
"internalType": "struct LauncherTypes.Socials"
}
],
"stateMutability": "view"
},
{
"name": "symbol",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "totalSupply",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "transfer",
"type": "function",
"inputs": [
{
"name": "to",
"type": "address",
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "nonpayable"
},
{
"name": "transferFrom",
"type": "function",
"inputs": [
{
"name": "from",
"type": "address",
"internalType": "address"
},
{
"name": "to",
"type": "address",
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "nonpayable"
}
]0x60806040526004361015610011575f80fd5b5f3560e01c806306fdde03146108e15780630861ac61146108a7578063089fe6aa14610868578063095ea7b3146107e657806312f16a07146107a857806318160ddd1461078b57806323b872dd146106ac578063313ce567146106915780633de35b791461064d578063536dac9b1461060957806353cd512a146105d1578063665a11ca146105a557806366a88d96146103e057806370a082311461056e5780637284e41614610553578063791b98bc1461050f5780638036d5901461050a5780638c0b5e221461050a57806395d89b4114610416578063a9059cbb146103e5578063aa4bde28146103e0578063abb1dc4414610303578063b8d8fbb4146102bf578063baed07651461027f578063d00efb2f14610245578063d5f394881461021d578063dd62ed3e146101cd578063fb7f21eb1461019a5763ff8ea3e514610158575f80fd5b34610196575f36600319011261019657602060405161ffff7f0000000000000000000000000000000000000000000000000000000000002710168152f35b5f80fd5b34610196575f366003190112610196576101c96101b5610c23565b60405191829160208352602083019061099c565b0390f35b34610196576040366003190112610196576101e66109db565b6101ee6109f1565b6001600160a01b039182165f908152600160209081526040808320949093168252928352819020549051908152f35b34610196575f366003190112610196576005546040516001600160a01b039091168152602090f35b34610196575f3660031901126101965760206040517f000000000000000000000000000000000000000000000000000000000184268e8152f35b34610196575f36600319011261019657602060405163ffffffff7f000000000000000000000000000000000000000000000000000000000000016e168152f35b34610196575f366003190112610196576040517f0000000000000000000000001f7d7550b1b028f7571e69a784071f0205fd2efa6001600160a01b03168152602090f35b34610196575f3660031901126101965760405161031f81610ae7565b5f81526060602082015260606040820152606061033a610d85565b91015260405161034981610ae7565b6005546001600160a01b0316815261035f610c23565b90602081019182526101c9610372610b55565b604083019081526103cd610384610daf565b91606085019283526103ba6040519687966020885260018060a01b039051166020880152516080604088015260a087019061099c565b9051858203601f1901606087015261099c565b9051838203601f19016080850152610a07565b610a73565b346101965760403660031901126101965761040b6104016109db565b6024359033610efe565b602060405160018152f35b34610196575f366003190112610196576040515f6004548060011c90600181168015610500575b6020831081146104ec578285529081156104c8575060011461046a575b6101c9836101b581850382610b33565b60045f9081527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b939250905b8082106104ae575090915081016020016101b561045a565b919260018160209254838588010152019101909291610496565b60ff191660208086019190915291151560051b840190910191506101b5905061045a565b634e487b7160e01b5f52602260045260245ffd5b91607f169161043d565b610aad565b34610196575f366003190112610196576040517f00000000000000000000000073991a25c818bf1f1128deaab1492d45638de0d36001600160a01b03168152602090f35b34610196575f366003190112610196576101c96101b5610b55565b34610196576020366003190112610196576001600160a01b0361058f6109db565b165f525f602052602060405f2054604051908152f35b34610196575f3660031901126101965760206105bf610e07565b6040516001600160a01b039091168152f35b34610196575f366003190112610196576105e9610d85565b506101c96105f5610daf565b604051918291602083526020830190610a07565b34610196575f366003190112610196576040517f000000000000000000000000d9ec2db5f3d1b236843925949fe5bd8a3836fccb6001600160a01b03168152602090f35b34610196575f366003190112610196576040517f0000000000000000000000000bd7d308f8e1639fab988df18a8011f41eacad736001600160a01b03168152602090f35b34610196575f36600319011261019657602060405160128152f35b34610196576060366003190112610196576106c56109db565b6106cd6109f1565b6001600160a01b0382165f818152600160209081526040808320338452909152902054909260443592915f19811061070b575b5061040b9350610efe565b83811061077057841561075d57331561074a5761040b945f52600160205260405f2060018060a01b0333165f526020528360405f209103905584610700565b634a1406b160e11b5f525f60045260245ffd5b63e602df0560e01b5f525f60045260245ffd5b8390637dc7a0d960e11b5f523360045260245260445260645ffd5b34610196575f366003190112610196576020600254604051908152f35b34610196575f36600319011261019657602060405161ffff7f00000000000000000000000000000000000000000000000000000000000000c8168152f35b34610196576040366003190112610196576107ff6109db565b60243590331561075d576001600160a01b031690811561074a57335f52600160205260405f20825f526020528060405f20556040519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560203392a3602060405160018152f35b34610196575f36600319011261019657602060405162ffffff7f0000000000000000000000000000000000000000000000000000000000002710168152f35b34610196575f3660031901126101965760206040517f00000000000000000000000000000000000000000000000000000000018427fc8152f35b34610196575f366003190112610196576040515f6003548060011c90600181168015610992575b6020831081146104ec578285529081156104c85750600114610934576101c9836101b581850382610b33565b60035f9081527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b939250905b808210610978575090915081016020016101b561045a565b919260018160209254838588010152019101909291610960565b91607f1691610908565b91908251928382525f5b8481106109c6575050825f602080949584010152601f8019910116010190565b806020809284010151828286010152016109a6565b600435906001600160a01b038216820361019657565b602435906001600160a01b038216820361019657565b610a70916080610a5f610a4d610a3b610a29865160a0875260a087019061099c565b6020870151868203602088015261099c565b6040860151858203604087015261099c565b6060850151848203606086015261099c565b92015190608081840391015261099c565b90565b34610196575f3660031901126101965760206040517f000000000000000000000000000000000000000000108b2a2c280290940000008152f35b34610196575f3660031901126101965760206040517f0000000000000000000000000000000000000000033b2e3c9fd0803ce80000008152f35b6080810190811067ffffffffffffffff821117610b0357604052565b634e487b7160e01b5f52604160045260245ffd5b60a0810190811067ffffffffffffffff821117610b0357604052565b90601f8019910116810190811067ffffffffffffffff821117610b0357604052565b604051905f6007548060011c9160018216918215610c19575b6020841083146104ec578386528592908115610bfa5750600114610b9b575b610b9992500383610b33565b565b5060075f90815290917fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6885b818310610bde575050906020610b9992820101610b8d565b6020919350806001915483858901015201910190918492610bc6565b60209250610b9994915060ff191682840152151560051b820101610b8d565b92607f1692610b6e565b604051905f6006548060011c9160018216918215610cc5575b6020841083146104ec578386528592908115610bfa5750600114610c6657610b9992500383610b33565b5060065f90815290917ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f5b818310610ca9575050906020610b9992820101610b8d565b6020919350806001915483858901015201910190918492610c91565b92607f1692610c3c565b90604051915f8154908160011c9260018316928315610d7b575b6020851084146104ec578487528693908115610d595750600114610d15575b50610b9992500383610b33565b90505f9291925260205f20905f915b818310610d3d575050906020610b99928201015f610d08565b6020919350806001915483858901015201910190918492610d24565b905060209250610b9994915060ff191682840152151560051b8201015f610d08565b93607f1693610ce9565b60405190610d9282610b17565b606060808382815282602082015282604082015282808201520152565b60405190610dbc82610b17565b81610dc76008610ccf565b8152610dd36009610ccf565b6020820152610de2600a610ccf565b6040820152610df1600b610ccf565b60608201526080610e02600c610ccf565b910152565b604051630b4c774160e11b81523060048201526001600160a01b037f0000000000000000000000000bd7d308f8e1639fab988df18a8011f41eacad738116602483015262ffffff7f0000000000000000000000000000000000000000000000000000000000002710166044830152602090829060649082907f0000000000000000000000001f7d7550b1b028f7571e69a784071f0205fd2efa165afa908115610ef3575f91610eb4575090565b90506020813d602011610eeb575b81610ecf60209383610b33565b8101031261019657516001600160a01b03811681036101965790565b3d9150610ec2565b6040513d5f823e3d90fd5b6001600160a01b03169081156112b1576001600160a01b031691821561129e577f000000000000000000000000000000000000000000000000000000000184268e80431180611274575b5f91431481801561126d575b61124b575b80611242575b80611230575b806111fd575b806111e8575b6111d557806111cc575b610ff8575b50815f525f60205260405f2054818110610fdf57817fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92602092855f525f84520360405f2055845f525f825260405f20818154019055604051908152a3565b8263391434e360e21b5f5260045260245260445260645ffd5b6001600160a01b031682811480611199575b80611184575b6110da575b7f000000000000000000000000d9ec2db5f3d1b236843925949fe5bd8a3836fccb6001600160a01b031684141590816110c4575b816110b9575b5061105b575b5f610f80565b825f525f6020526110708160405f20546112c4565b7f000000000000000000000000000000000000000000108b2a2c28029094000000908181116110a0575050611055565b846304a43e8b60e51b5f5260045260245260445260645ffd5b90508314155f61104f565b6005546001600160a01b03168514159150611049565b325f52600d6020526110f08260405f20546112c4565b325f52600d6020528060405f20557f0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000612af8810290808204612af814901517156111705761271090049081158015611167575b61114e575050611015565b6334e5f8b760e21b5f523260045260245260445260645ffd5b50818111611143565b634e487b7160e01b5f52601160045260245ffd5b506005546001600160a01b0316841415611010565b507f000000000000000000000000d9ec2db5f3d1b236843925949fe5bd8a3836fccb6001600160a01b031684141561100a565b50811515610f7b565b846385234f9760e01b5f5260045260245ffd5b506005546001600160a01b0316851415610f71565b507f000000000000000000000000d9ec2db5f3d1b236843925949fe5bd8a3836fccb6001600160a01b0316851415610f6b565b506001600160a01b0382168414610f65565b50821515610f5f565b9150611255610e07565b916001600160a01b038316610f595750505f5f610f59565b5080610f54565b507f00000000000000000000000000000000000000000000000000000000018427fc431115610f48565b63ec442f0560e01b5f525f60045260245ffd5b634b637e8f60e11b5f525f60045260245ffd5b919082018092116111705756fea164736f6c634300081e000a
| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| Global Dollar (USDG) | USDG | 26.5 | $1 | $26.5 |
| DIH | 1 | $0.0000102 | $0 | |
| WallStreetBets (WSB) | WSB | 75 | — | — |
| Lenny (Lenny) | Lenny | 65 | — | — |
| United States Energy Reserve (USER) | USER | 57 | — | — |
| memecat (MEMECAT) | MEMECAT | 50.279 | — | — |
| POW (POW) | POW | 40 | — | — |
| Imagine (IMAGINE) | IMAGINE | 40 | — | — |
| Robinhood Summer (SUMMER) | SUMMER | 25 | — | — |
| HOODIE (HOODIE) | HOODIE | 20 | — | — |
| Archer Robin Wif (ARROW) | ARROW | 20 | — | — |
| buy and retire (530A) | 530A | 20 | — | — |
| Penguin wif bag (Tao Tao) | Tao Tao | 15 | — | — |
| THE JUGGERNAUT (JUGGERNAUT) | JUGGERNAUT | 15 | — | — |
| Gold Dog (GOLDDOG) | GOLDDOG | 15 | — | — |
| CASH CAT (CASHCAT) | CASHCAT | 15 | — | — |
| banana cat (bcat) | bcat | 15 | — | — |
| Pons (PONS) | PONS | 15 | — | — |
| Apes Together Strong (APES) | APES | 15 | — | — |
| EarthCoin (EarthCoin) | EarthCoin | 15 | — | — |
| AMERICA 250 (AMERICA250) | AMERICA250 | 15 | — | — |
| HOODers (HOODers) | HOODers | 12 | — | — |
| Wire bot (WIRE) | WIRE | 9 | — | — |
| Trump 2028 (TRUMP2028) | TRUMP2028 | 5 | — | — |
| Trump Accounts Fund (TA) | TA | 5 | — | — |
| Mancer (MANCER) | MANCER | 5 | — | — |
| Dog in Hood (DIH) | DIH | 5 | — | — |
| meow in hood (meow) | meow | 3 | — | — |
| Robinhood Gift (GIFT) | GIFT | 1 | — | — |
| Robinhood Gift (GIFT) | GIFT | 1 | — | — |
| Type | Age | Block | Details |
|---|---|---|---|
| no cross-chain L1↔L2 transactions for this address | |||
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0x6bcc95…9e0b4c | 4 mins agoMon, 17 Aug 2026 22:37:47 UTC | Transfer | [0] 0x000000000000…6aaceccb [1] 0x000000000000…d0012d16 data: 0x000000000000000000…c82484bc |
| 0x23c233…766081 | 36 mins agoMon, 17 Aug 2026 22:06:19 UTC | Transfer | [0] 0x000000000000…6aaceccb [1] 0x000000000000…3463f142 data: 0x000000000000000000…b9c00000 |
| 0x5ab319…483b2e | 41 mins agoMon, 17 Aug 2026 22:00:57 UTC | Transfer | [0] 0x000000000000…6aaceccb [1] 0x000000000000…c762010c data: 0x000000000000000000…e46351a3 |
| 0x6fa350…ffb3e4 | 42 mins agoMon, 17 Aug 2026 21:59:51 UTC | Transfer | [0] 0x000000000000…4a7447ce [1] 0x000000000000…6aaceccb data: 0x000000000000000000…8f2ed436 |
| 0xaa9b2e…1cc3c0 | 42 mins agoMon, 17 Aug 2026 21:59:51 UTC | Approval | [0] 0x000000000000…4a7447ce [1] 0x000000000000…262c40dc data: 0x000000000000000000…8f2ed436 |
| 0x904e00…dc714d | 1 hr agoMon, 17 Aug 2026 21:37:54 UTC | Transfer | [0] 0x000000000000…20cbbe5f [1] 0x000000000000…41a8db5e data: 0x000000000000000000…4ad7e90f |
| 0x904e00…dc714d | 1 hr agoMon, 17 Aug 2026 21:37:54 UTC | Transfer | [0] 0x000000000000…6aaceccb [1] 0x000000000000…20cbbe5f data: 0x000000000000000000…4ad7e90f |
| 0x07d04f…0dd509 | 1 hr agoMon, 17 Aug 2026 21:31:13 UTC | Transfer | [0] 0x000000000000…61d67912 [1] 0x000000000000…6aaceccb data: 0x000000000000000000…25800000 |
| 0x90e07c…cc800f | 2 hrs agoMon, 17 Aug 2026 20:25:27 UTC | Transfer | [0] 0x000000000000…1ae671be [1] 0x000000000000…6aaceccb data: 0x000000000000000000…a6d9dfc4 |
| 0x827cb7…4566db | 2 hrs agoMon, 17 Aug 2026 19:59:17 UTC | Transfer | [0] 0x000000000000…4e3010e2 [1] 0x000000000000…6aaceccb data: 0x000000000000000000…85680000 |
| 0x827cb7…4566db | 2 hrs agoMon, 17 Aug 2026 19:59:17 UTC | Approval | [0] 0x000000000000…4e3010e2 [1] 0x000000000000…72c22734 data: 0x000000000000000000…85680000 |
| 0x827cb7…4566db | 2 hrs agoMon, 17 Aug 2026 19:59:17 UTC | Transfer | [0] 0x000000000000…5b8d1f95 [1] 0x000000000000…4e3010e2 data: 0x000000000000000000…e3800000 |
| 0x827cb7…4566db | 2 hrs agoMon, 17 Aug 2026 19:59:17 UTC | Approval | [0] 0x000000000000…5b8d1f95 [1] 0x000000000000…4e3010e2 data: 0x000000000000000000…e3800000 |
| 0xf3bb98…ca49fa | 2 hrs agoMon, 17 Aug 2026 19:50:25 UTC | Transfer | [0] 0x000000000000…4a7447ce [1] 0x000000000000…6aaceccb data: 0x000000000000000000…43927837 |
| 0x2011d3…b2afa9 | 2 hrs agoMon, 17 Aug 2026 19:50:25 UTC | Approval | [0] 0x000000000000…4a7447ce [1] 0x000000000000…262c40dc data: 0x000000000000000000…43927837 |
| 0xb4142d…32229f | 2 hrs agoMon, 17 Aug 2026 19:50:25 UTC | Transfer | [0] 0x000000000000…6aaceccb [1] 0x000000000000…f40719aa data: 0x000000000000000000…65a51afc |
| 0xc13ca5…f3f89e | 2 hrs agoMon, 17 Aug 2026 19:43:49 UTC | Transfer | [0] 0x000000000000…d113f996 [1] 0x000000000000…6aaceccb data: 0x000000000000000000…c0de1bf8 |
| 0xc13ca5…f3f89e | 2 hrs agoMon, 17 Aug 2026 19:43:49 UTC | Transfer | [0] 0x000000000000…ec4fff4f [1] 0x000000000000…d113f996 data: 0x000000000000000000…c0de1bf8 |
| 0xc13ca5…f3f89e | 2 hrs agoMon, 17 Aug 2026 19:43:49 UTC | Approval | [0] 0x000000000000…ec4fff4f [1] 0x000000000000…b66337b5 data: 0x000000000000000000…c0de1bf8 |
| 0xc13ca5…f3f89e | 2 hrs agoMon, 17 Aug 2026 19:43:49 UTC | Transfer | [0] 0x000000000000…b57842a1 [1] 0x000000000000…ec4fff4f data: 0x000000000000000000…c0de1bf8 |
| 0xc13ca5…f3f89e | 2 hrs agoMon, 17 Aug 2026 19:43:49 UTC | Approval | [0] 0x000000000000…b57842a1 [1] 0x000000000000…f1c315be data: 0x000000000000000000…c0de1bf8 |
| 0xa87a93…567b10 | 3 hrs agoMon, 17 Aug 2026 19:28:43 UTC | Transfer | [0] 0x000000000000…165d125f [1] 0x000000000000…6aaceccb data: 0x000000000000000000…02439300 |
| 0xa87a93…567b10 | 3 hrs agoMon, 17 Aug 2026 19:28:43 UTC | Transfer | [0] 0x000000000000…72414af3 [1] 0x000000000000…165d125f data: 0x000000000000000000…02439300 |
| 0xa87a93…567b10 | 3 hrs agoMon, 17 Aug 2026 19:28:43 UTC | Transfer | [0] 0x000000000000…72414af3 [1] 0x000000000000…f46c6c29 data: 0x000000000000000000…0d92d000 |
| 0xa87a93…567b10 | 3 hrs agoMon, 17 Aug 2026 19:28:43 UTC | Transfer | [0] 0x000000000000…72414af3 [1] 0x000000000000…efae264b data: 0x000000000000000000…90d92d00 |
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0xaa9b2e…1cc3c0 | Approve | 39,178,682 | 42 mins agoMon, 17 Aug 2026 21:59:51 UTC | 0x0cc5…47ce | IN | Copper pot of wealth | $0.000 ETH | 0.00000092 | |
| 0x2011d3…b2afa9 | Approve | 39,101,285 | 2 hrs agoMon, 17 Aug 2026 19:50:25 UTC | 0x0cc5…47ce | IN | Copper pot of wealth | $0.000 ETH | 0.00000092 | |
| 0x82abd9…1284c2 | Approve | 39,016,640 | 5 hrs agoMon, 17 Aug 2026 17:28:57 UTC | 0x1d34…e6be | IN | Copper pot of wealth | $0.000 ETH | 0.00000093 | |
| 0xdd65df…86fc0c | Approve | 39,004,407 | 5 hrs agoMon, 17 Aug 2026 17:08:30 UTC | 0x9c53…81bc | IN | Copper pot of wealth | $0.000 ETH | 0.00000094 | |
| 0x05a762…a6dfd9 | Approve | 38,963,367 | 6 hrs agoMon, 17 Aug 2026 15:59:58 UTC | 0xaedd…71be | IN | Copper pot of wealth | $0.000 ETH | 0.00000094 | |
| 0x7ae625…53c4c7 | Approve | 38,703,802 | 13 hrs agoMon, 17 Aug 2026 08:46:13 UTC | 0x4486…825c | IN | Copper pot of wealth | $0.000 ETH | 0.00000092 | |
| 0xf85cae…d04f49 | Approve | 38,692,412 | 14 hrs agoMon, 17 Aug 2026 08:27:09 UTC | 0xc1df…6b9a | IN | Copper pot of wealth | $0.000 ETH | 0.00000093 | |
| 0x0324a7…5873a3 | Approve | 38,682,026 | 14 hrs agoMon, 17 Aug 2026 08:09:48 UTC | 0xc557…1c98 | IN | Copper pot of wealth | $0.000 ETH | 0.00000093 | |
| 0x4e3c4e…03d660 | Approve | 38,633,523 | 15 hrs agoMon, 17 Aug 2026 06:48:38 UTC | 0xfd19…132e | IN | Copper pot of wealth | $0.000 ETH | 0.00000092 | |
| 0xa338bf…1137d1 | Approve | 38,562,633 | 17 hrs agoMon, 17 Aug 2026 04:50:01 UTC | 0x1973…d621 | IN | Copper pot of wealth | $0.000 ETH | 0.00000092 | |
| 0xad4180…8f3764 | Approve | 38,362,005 | 23 hrs agoSun, 16 Aug 2026 23:14:23 UTC | 0x3a81…0afa | IN | Copper pot of wealth | $0.000 ETH | 0.00000094 | |
| 0x1b0389…8f55e3 | Approve | 38,360,642 | 23 hrs agoSun, 16 Aug 2026 23:12:07 UTC | 0x172f…b639 | IN | Copper pot of wealth | $0.000 ETH | 0.00000093 | |
| 0xc96110…88bc22 | Approve | 38,308,576 | 1 day agoSun, 16 Aug 2026 21:45:02 UTC | 0xf334…6d12 | IN | Copper pot of wealth | $0.000 ETH | 0.00000095 | |
| 0x8c2c3b…1f15ca | Approve | 38,236,639 | 1 day agoSun, 16 Aug 2026 19:44:49 UTC | 0xa74e…7655 | IN | Copper pot of wealth | $0.000 ETH | 0.00000092 | |
| 0xb95ce4…09e3a0 | Approve | 38,236,360 | 1 day agoSun, 16 Aug 2026 19:44:21 UTC | 0xa74e…7655 | IN | Copper pot of wealth | $0.000 ETH | 0.00000092 | |
| 0xd129c3…157b0b | Approve | 38,187,918 | 1 day agoSun, 16 Aug 2026 18:23:22 UTC | 0x04ec…d155 | IN | Copper pot of wealth | $0.000 ETH | 0.00000094 | |
| 0xbc3ec8…073d20 | Approve | 38,163,106 | 1 day agoSun, 16 Aug 2026 17:41:52 UTC | 0x6362…67a8 | IN | Copper pot of wealth | $0.000 ETH | 0.00000093 | |
| 0xf854fb…21a997 | Approve | 38,090,479 | 1 day agoSun, 16 Aug 2026 15:40:26 UTC | 0x6254…dac7 | IN | Copper pot of wealth | $0.000 ETH | 0.00000093 | |
| 0x00586d…a07c63 | Approve | 38,064,767 | 1 day agoSun, 16 Aug 2026 14:57:27 UTC | 0x6254…dac7 | IN | Copper pot of wealth | $0.000 ETH | 0.00000092 | |
| 0x6ed539…79c95a | Approve | 38,026,498 | 1 day agoSun, 16 Aug 2026 13:53:25 UTC | 0x3f35…b230 | IN | Copper pot of wealth | $0.000 ETH | 0.00000049 | |
| 0x4c8bee…b39777 | Approve | 38,026,494 | 1 day agoSun, 16 Aug 2026 13:53:24 UTC | 0x3f35…b230 | IN | Copper pot of wealth | $0.000 ETH | 0.00000094 | |
| 0x95c478…2bae31 | Approve | 38,022,563 | 1 day agoSun, 16 Aug 2026 13:46:50 UTC | 0xa987…7376 | IN | Copper pot of wealth | $0.000 ETH | 0.00000096 | |
| 0x00e313…10c0a6 | Approve | 37,888,162 | 1 day agoSun, 16 Aug 2026 10:01:52 UTC | 0xd41e…e344 | IN | Copper pot of wealth | $0.000 ETH | 0.00000106 | |
| 0x9c0700…18e029 | Approve | 37,691,469 | 1 day agoSun, 16 Aug 2026 04:32:35 UTC | 0x442b…06fb | IN | Copper pot of wealth | $0.000 ETH | 0.00000116 | |
| 0x25148e…23ff89 | Approve | 37,629,422 | 1 day agoSun, 16 Aug 2026 02:48:46 UTC | 0xfd19…132e | IN | Copper pot of wealth | $0.000 ETH | 0.00000120 |
| Transaction Hash | Method | Block | Age | From | To | Amount | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x84d53bf6…295087 | Transfer | 39,145,897 | 1 hr agoMon, 17 Aug 2026 21:05:02 UTC | 0xcbf0…8b4d | IN | 0xdcc3…5c74 | 9 WIRE | Wire bot (WIRE) | |
| 0x791e4f98…21625e | Transfer | 38,035,012 | 1 day agoSun, 16 Aug 2026 14:07:43 UTC | 0xcb85…9908 | IN | 0xdcc3…5c74 | 15 Tao Tao | Penguin wif bag (Tao Tao) | |
| 0xffb6edce…b07ace | Transfer | 38,008,604 | 1 day agoSun, 16 Aug 2026 13:23:28 UTC | 0xcb85…9908 | IN | 0xdcc3…5c74 | 15 EarthCoin | EarthCoin (EarthCoin) | |
| 0x01451748…8fcf5b | Transfer | 36,389,865 | 3 days agoFri, 14 Aug 2026 16:17:29 UTC | 0xcb85…9908 | IN | 0xdcc3…5c74 | 5 MANCER | Mancer (MANCER) | |
| 0x842efc79…ec2ce1 | Transfer | 34,129,538 | 5 days agoWed, 12 Aug 2026 01:26:05 UTC | 0xc7a7…cec7 | IN | 0xdcc3…5c74 | 30 Lenny | Lenny (Lenny) | |
| 0xa1d53833…fcb001 | Transfer | 34,123,368 | 5 days agoWed, 12 Aug 2026 01:15:48 UTC | 0xc7a7…cec7 | IN | 0xdcc3…5c74 | 35 Lenny | Lenny (Lenny) | |
| 0xa295fa32…134ff0 | Transfer | 27,294,984 | 13 days agoTue, 04 Aug 2026 03:17:59 UTC | 0x1673…13db | IN | 0xdcc3…5c74 | 15 APES | Apes Together Strong (APES) | |
| 0xa4863fc6…df3428 | Transfer | 24,437,996 | 17 days agoFri, 31 Jul 2026 19:43:33 UTC | 0xc7a7…cec7 | IN | 0xdcc3…5c74 | 50.279 MEMECAT | memecat (MEMECAT) | |
| 0x4cfc1e0b…3d8fa2 | Transfer | 20,956,351 | 21 days agoMon, 27 Jul 2026 18:45:12 UTC | 0x8c94…ec08 | IN | 0xdcc3…5c74 | 3 USDG | Global Dollar (USDG) | |
| 0x0a8bb932…86e3a4 | Transfer | 20,956,257 | 21 days agoMon, 27 Jul 2026 18:45:03 UTC | 0x8c94…ec08 | IN | 0xdcc3…5c74 | 3 USDG | Global Dollar (USDG) | |
| 0xb4a3f5e1…c57551 | Transfer | 20,075,082 | 22 days agoSun, 26 Jul 2026 18:09:47 UTC | 0xc7a7…cec7 | IN | 0xdcc3…5c74 | 5 TA | Trump Accounts Fund (TA) | |
| 0xfeab4d1e…9a8751 | Transfer | 19,284,125 | 23 days agoSat, 25 Jul 2026 20:07:12 UTC | 0xc7a7…cec7 | IN | 0xdcc3…5c74 | 5 TRUMP2028 | Trump 2028 (TRUMP2028) | |
| 0x3e5bea94…02ca8a | Transfer | 17,306,701 | 25 days agoThu, 23 Jul 2026 13:00:38 UTC | 0xcaf7…5d11 | IN | 0xdcc3…5c74 | $0.001 DIH | ||
| 0x2d8f51a9…b78721 | Transfer | 16,639,826 | 26 days agoWed, 22 Jul 2026 18:26:17 UTC | 0xcc05…efe3 | IN | 0xdcc3…5c74 | 40 IMAGINE | Imagine (IMAGINE) | |
| 0x52fef9b4…150756 | Transfer | 15,929,255 | 27 days agoTue, 21 Jul 2026 22:39:39 UTC | 0xcc05…efe3 | IN | 0xdcc3…5c74 | 40 POW | POW (POW) | |
| 0xff348591…861a3a | Transfer | 14,968,341 | 28 days agoMon, 20 Jul 2026 19:54:41 UTC | 0x8c94…ec08 | IN | 0xdcc3…5c74 | 10.25 USDG | Global Dollar (USDG) | |
| 0xd22851b1…1e18c5 | Transfer | 14,968,236 | 28 days agoMon, 20 Jul 2026 19:54:31 UTC | 0x8c94…ec08 | IN | 0xdcc3…5c74 | 10.25 USDG | Global Dollar (USDG) | |
| 0x4bd5296d…4405ea | Transfer | 14,822,510 | 28 days agoMon, 20 Jul 2026 15:51:13 UTC | 0xaa7f…ddf9 | IN | 0xdcc3…5c74 | 12 HOODers | HOODers (HOODers) | |
| 0x68a859f2…1eb923 | Transfer | 13,191,211 | 30 days agoSat, 18 Jul 2026 18:21:13 UTC | 0xa7e0…34ac | IN | 0xdcc3…5c74 | 25 USER | United States Energy Reserve (USER) | |
| 0xfbece869…a0c55e | Transfer | 13,168,642 | 30 days agoSat, 18 Jul 2026 17:43:29 UTC | 0xa7e0…34ac | IN | 0xdcc3…5c74 | 32 USER | United States Energy Reserve (USER) | |
| 0x71b1e731…319c63 | Transfer | 10,780,358 | 32 days agoWed, 15 Jul 2026 23:12:54 UTC | 0xd2e4…b70c | IN | 0xdcc3…5c74 | 15 PONS | Pons (PONS) | |
| 0xf04f5b4f…90d92d | Transfer | 9,708,342 | 34 days agoTue, 14 Jul 2026 17:26:41 UTC | 0xd2e4…b70c | IN | 0xdcc3…5c74 | 15 bcat | banana cat (bcat) | |
| 0x32f13041…f17e04 | Transfer | 8,418,279 | 35 days agoMon, 13 Jul 2026 05:32:34 UTC | 0xa7e0…34ac | IN | 0xdcc3…5c74 | 50 WSB | WallStreetBets (WSB) | |
| 0xcdbe0441…f3e531 | Transfer | 8,405,674 | 35 days agoMon, 13 Jul 2026 05:11:29 UTC | 0xa7e0…34ac | IN | 0xdcc3…5c74 | 25 WSB | WallStreetBets (WSB) | |
| 0x436d747f…321c17 | Transfer | 7,338,554 | 36 days agoSat, 11 Jul 2026 23:28:49 UTC | 0xc7a7…cec7 | IN | 0xdcc3…5c74 | 3 meow | meow in hood (meow) |
| Transaction Hash | Method | Block | Age | From | To | Type | Item | ||
|---|---|---|---|---|---|---|---|---|---|
| 0xb3b8601c…4e403a | Transfer | 5,517,709 | 39 days agoThu, 09 Jul 2026 20:50:06 UTC | 0x0000…0000 | IN | 0xdcc3…5c74 | Mint | Robinhood Gift (GIFT) #4918 | |
| 0xf086237a…d9023e | Transfer | 5,390,468 | 39 days agoThu, 09 Jul 2026 17:17:38 UTC | 0x0000…0000 | IN | 0xdcc3…5c74 | Mint | Robinhood Gift (GIFT) #2478 |
| Block | Age | Parent Transaction Hash | Type | Method | From | To | Value | |
|---|---|---|---|---|---|---|---|---|
| 726,586 | 47 days agoWed, 01 Jul 2026 13:03:36 UTC | 0x2fbba3…2ecb16 | CREATE2 | launchToken | 0xd9ec…fccb | IN | 0xdcc3…5c74 | 0 ETH |