// SPDX-License-Identifier: MIT
pragma solidity 0.8.26;
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {IRelayRegistry} from "./GatedToken.sol";
/// @title GatedMaxToken
/// @notice Combines the two mechanisms: a **buy-gate** (during the blink, buys — transfers out of the pool
/// — only succeed if tx.origin is a whitelisted Relay relayer) AND a **2% max-wallet** anti-whale cap.
/// Sells are always allowed. Pool/launchpad/routers are exempt from the cap.
contract GatedMaxToken is ERC20 {
error NotLaunchpad();
error AlreadyInitialized();
error BuyLocked();
error MaxWalletExceeded();
uint256 public constant TOTAL_SUPPLY = 1_000_000_000e18;
IRelayRegistry public immutable registry;
address public immutable launchpad;
uint256 public immutable maxWallet;
address public pool;
uint64 public windowEnd;
mapping(address => bool) public exempt;
constructor(string memory name_, string memory symbol_, address _launchpad, IRelayRegistry _registry, uint16 maxWalletBps)
ERC20(name_, symbol_)
{
launchpad = _launchpad;
registry = _registry;
maxWallet = (TOTAL_SUPPLY * maxWalletBps) / 10_000;
exempt[_launchpad] = true;
_mint(_launchpad, TOTAL_SUPPLY);
}
/// @notice Launchpad arms the gate (pool + window) and seeds cap exemptions (pool + routers).
function initialize(address _pool, uint64 _windowEnd, address[] calldata exemptions) external {
if (msg.sender != launchpad) revert NotLaunchpad();
if (pool != address(0)) revert AlreadyInitialized();
pool = _pool;
windowEnd = _windowEnd;
exempt[_pool] = true;
for (uint256 i; i < exemptions.length; i++) exempt[exemptions[i]] = true;
}
function setExempt(address a, bool b) external {
if (msg.sender != launchpad) revert NotLaunchpad();
exempt[a] = b;
}
function _update(address from, address to, uint256 value) internal override {
// Buy gate: block buys (out of the pool) during the window unless origin is a whitelisted relayer.
if (pool != address(0) && from == pool && block.timestamp < windowEnd && !registry.isRelayer(tx.origin)) {
revert BuyLocked();
}
super._update(from, to, value);
// Max-wallet cap on non-exempt recipients.
if (to != address(0) && !exempt[to] && balanceOf(to) > maxWallet) revert MaxWalletExceeded();
}
}[
{
"type": "constructor",
"inputs": [
{
"name": "name_",
"type": "string",
"internalType": "string"
},
{
"name": "symbol_",
"type": "string",
"internalType": "string"
},
{
"name": "_launchpad",
"type": "address",
"internalType": "address"
},
{
"name": "_registry",
"type": "address",
"internalType": "contract IRelayRegistry"
},
{
"name": "maxWalletBps",
"type": "uint16",
"internalType": "uint16"
}
],
"stateMutability": "nonpayable"
},
{
"name": "AlreadyInitialized",
"type": "error",
"inputs": []
},
{
"name": "BuyLocked",
"type": "error",
"inputs": []
},
{
"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": "MaxWalletExceeded",
"type": "error",
"inputs": []
},
{
"name": "NotLaunchpad",
"type": "error",
"inputs": []
},
{
"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": "TOTAL_SUPPLY",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"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": "exempt",
"type": "function",
"inputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "view"
},
{
"name": "initialize",
"type": "function",
"inputs": [
{
"name": "_pool",
"type": "address",
"internalType": "address"
},
{
"name": "_windowEnd",
"type": "uint64",
"internalType": "uint64"
},
{
"name": "exemptions",
"type": "address[]",
"internalType": "address[]"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "launchpad",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "maxWallet",
"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": "pool",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "registry",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "contract IRelayRegistry"
}
],
"stateMutability": "view"
},
{
"name": "setExempt",
"type": "function",
"inputs": [
{
"name": "a",
"type": "address",
"internalType": "address"
},
{
"name": "b",
"type": "bool",
"internalType": "bool"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"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"
},
{
"name": "windowEnd",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint64",
"internalType": "uint64"
}
],
"stateMutability": "view"
}
]0x6080806040526004361015610012575f80fd5b5f3560e01c90816302669b52146107fa5750806306fdde031461073f578063095ea7b3146106bd57806316f0115b1461069557806318160ddd1461067857806323b872dd14610599578063313ce5671461057e57806370a08231146105475780637b103999146105035780637db1f101146104d9578063902d55a5146104b357806395d89b41146103af5780639fde54f514610334578063a9059cbb14610303578063ca605d89146101ad578063dd62ed3e1461015d578063f1320af2146101205763f8b45b05146100e2575f80fd5b3461011c575f36600319011261011c5760206040517f000000000000000000000000000000000000000000108b2a2c280290940000008152f35b5f80fd5b3461011c57602036600319011261011c576001600160a01b03610141610865565b165f526006602052602060ff60405f2054166040519015158152f35b3461011c57604036600319011261011c57610176610865565b61017e61087b565b6001600160a01b039182165f908152600160209081526040808320949093168252928352819020549051908152f35b3461011c57606036600319011261011c576101c6610865565b60243567ffffffffffffffff8116810361011c576044359067ffffffffffffffff821161011c573660238301121561011c5781600401359267ffffffffffffffff841161011c573660248560051b8501011161011c577f000000000000000000000000f441cc979fa862f2674b9188a7b529cafd3ce2046001600160a01b031633036102f457600554906001600160a01b0382166102e65760018060a01b0316809267ffffffffffffffff60a01b9060a01b169163ffffffff60e01b1617176005555f52600660205260405f20600160ff198254161790555f5b828110156102e4576024600582901b830101356001600160a01b038116919082900361011c576001915f52600660205260405f208260ff19825416179055016102a0565b005b62dc149f60e41b5f5260045ffd5b63ed6fcad960e01b5f5260045ffd5b3461011c57604036600319011261011c5761032961031f610865565b60243590336108c7565b602060405160018152f35b3461011c57604036600319011261011c5761034d610865565b6024359081151580920361011c577f000000000000000000000000f441cc979fa862f2674b9188a7b529cafd3ce2046001600160a01b031633036102f45760018060a01b03165f52600660205260405f209060ff801983541691161790555f80f35b3461011c575f36600319011261011c576040515f6004548060011c906001811680156104a9575b602083108114610495578285529081156104715750600114610413575b61040f8361040381850382610891565b6040519182918261083b565b0390f35b91905060045f527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b915f905b808210610457575090915081016020016104036103f3565b91926001816020925483858801015201910190929161043f565b60ff191660208086019190915291151560051b8401909101915061040390506103f3565b634e487b7160e01b5f52602260045260245ffd5b91607f16916103d6565b3461011c575f36600319011261011c5760206040516b033b2e3c9fd0803ce80000008152f35b3461011c575f36600319011261011c57602067ffffffffffffffff60055460a01c16604051908152f35b3461011c575f36600319011261011c576040517f00000000000000000000000076b7e1fdb7b860e8caa29bd85ef191462854c3566001600160a01b03168152602090f35b3461011c57602036600319011261011c576001600160a01b03610568610865565b165f525f602052602060405f2054604051908152f35b3461011c575f36600319011261011c57602060405160128152f35b3461011c57606036600319011261011c576105b2610865565b6105ba61087b565b6001600160a01b0382165f818152600160209081526040808320338452909152902054909260443592915f1981106105f8575b5061032993506108c7565b83811061065d57841561064a57331561063757610329945f52600160205260405f2060018060a01b0333165f526020528360405f2091039055846105ed565b634a1406b160e11b5f525f60045260245ffd5b63e602df0560e01b5f525f60045260245ffd5b8390637dc7a0d960e11b5f523360045260245260445260645ffd5b3461011c575f36600319011261011c576020600254604051908152f35b3461011c575f36600319011261011c576005546040516001600160a01b039091168152602090f35b3461011c57604036600319011261011c576106d6610865565b60243590331561064a576001600160a01b031690811561063757335f52600160205260405f20825f526020528060405f20556040519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560203392a3602060405160018152f35b3461011c575f36600319011261011c576040515f6003548060011c906001811680156107f0575b6020831081146104955782855290811561047157506001146107925761040f8361040381850382610891565b91905060035f527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b915f905b8082106107d6575090915081016020016104036103f3565b9192600181602092548385880101520191019092916107be565b91607f1691610766565b3461011c575f36600319011261011c577f000000000000000000000000f441cc979fa862f2674b9188a7b529cafd3ce2046001600160a01b03168152602090f35b602060409281835280519182918282860152018484015e5f828201840152601f01601f1916010190565b600435906001600160a01b038216820361011c57565b602435906001600160a01b038216820361011c57565b90601f8019910116810190811067ffffffffffffffff8211176108b357604052565b634e487b7160e01b5f52604160045260245ffd5b6001600160a01b0316908115610acf576001600160a01b0316918215610abc576005546001600160a01b038116801515919082610ab2575b5081610a9b575b50806109fa575b6109eb57815f525f60205260405f20548181106109d25760208284937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9387965f525f84520360405f2055845f525f825260405f20818154019055604051908152a3805f52600660205260ff60405f20541615908161099d575b5061098e57565b632ce93b5960e01b5f5260045ffd5b90505f525f60205260405f20547f000000000000000000000000000000000000000000108b2a2c28029094000000105f610987565b8263391434e360e21b5f5260045260245260445260645ffd5b633d80d6cf60e01b5f5260045ffd5b50604051630a83aaa960e31b81523260048201526020816024817f00000000000000000000000076b7e1fdb7b860e8caa29bd85ef191462854c3566001600160a01b03165afa908115610a90575f91610a55575b501561090d565b90506020813d602011610a88575b81610a7060209383610891565b8101031261011c5751801515810361011c575f610a4e565b3d9150610a63565b6040513d5f823e3d90fd5b67ffffffffffffffff915060a01c1642105f610906565b841491505f6108ff565b63ec442f0560e01b5f525f60045260245ffd5b634b637e8f60e11b5f525f60045260245ffdfea2646970667358221220eef689a95e6f9a3ac33c14f622051afe4afd072c280b5ab33f0ecb68c5925bff64736f6c634300081a0033
| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| Jimothy The Raccoon (Jimothy) | Jimothy | 12 | — | — |
| Transaction Hash | Method | Block | Age | From | To | Type | Item | ||
|---|---|---|---|---|---|---|---|---|---|
| no NFT transfers for this address yet | |||||||||
| Transaction Hash | Method | Block | Age | From | To | Amount | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x531c0b60…6a7341 | Transfer | 32,977,048 | 7 days agoMon, 10 Aug 2026 17:26:29 UTC | 0x3f48…48ee | IN | 0xf01e…3a30 | 12 Jimothy | Jimothy The Raccoon (Jimothy) |
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x9eed97…792518 | Approve | 34,591,757 | 5 days agoWed, 12 Aug 2026 14:14:01 UTC | 0x8962…9674 | IN | punchingcat.com | $0.000 ETH | 0.00000239 | |
| 0x09b70d…1a2833 | Approve | 34,514,322 | 5 days agoWed, 12 Aug 2026 12:04:53 UTC | 0x31fd…0c94 | IN | punchingcat.com | $0.000 ETH | 0.00000231 | |
| 0x377304…cb185f | Approve | 32,175,219 | 8 days agoSun, 09 Aug 2026 19:07:58 UTC | 0xad01…fce5 | IN | punchingcat.com | $0.000 ETH | 0.00000125 | |
| 0x1e9b28…6d4a13 | Approve | 32,114,347 | 8 days agoSun, 09 Aug 2026 17:26:23 UTC | 0xf9f1…16a0 | IN | punchingcat.com | $0.000 ETH | 0.00000127 | |
| 0x306941…46217a | Approve | 32,092,605 | 8 days agoSun, 09 Aug 2026 16:50:06 UTC | 0x2070…0b50 | IN | punchingcat.com | $0.000 ETH | 0.00000126 | |
| 0x674edd…491b32 | Approve | 32,080,265 | 8 days agoSun, 09 Aug 2026 16:29:30 UTC | 0x7109…eba3 | IN | punchingcat.com | $0.000 ETH | 0.00000126 | |
| 0x0a0a90…97cf3e | Approve | 32,080,097 | 8 days agoSun, 09 Aug 2026 16:29:15 UTC | 0xf861…9528 | IN | punchingcat.com | $0.000 ETH | 0.00000124 | |
| 0xda22dd…029d85 | Approve | 32,080,031 | 8 days agoSun, 09 Aug 2026 16:29:09 UTC | 0x0b6e…5545 | IN | punchingcat.com | $0.000 ETH | 0.00000126 | |
| 0x8b6444…c9f7b9 | Approve | 32,078,811 | 8 days agoSun, 09 Aug 2026 16:27:06 UTC | 0x1eef…1c30 | IN | punchingcat.com | $0.000 ETH | 0.00000123 | |
| 0xf852bb…6bb933 | Approve | 32,070,276 | 8 days agoSun, 09 Aug 2026 16:12:52 UTC | 0x48e5…dbc4 | IN | punchingcat.com | $0.000 ETH | 0.00000125 | |
| 0xec5a13…0efc9c | Approve | 32,068,043 | 8 days agoSun, 09 Aug 2026 16:09:09 UTC | 0xa6b7…f0ef | IN | punchingcat.com | $0.000 ETH | 0.00000125 | |
| 0x398f3a…9eb29a | Approve | 32,065,399 | 8 days agoSun, 09 Aug 2026 16:04:43 UTC | 0x65fe…4609 | IN | punchingcat.com | $0.000 ETH | 0.00000126 | |
| 0x432453…f9c90a | Approve | 32,065,169 | 8 days agoSun, 09 Aug 2026 16:04:20 UTC | 0x3d38…7d49 | IN | punchingcat.com | $0.000 ETH | 0.00000125 | |
| 0x41c46a…16cf13 | Approve | 32,064,827 | 8 days agoSun, 09 Aug 2026 16:03:47 UTC | 0xd255…b97b | IN | punchingcat.com | $0.000 ETH | 0.00000065 | |
| 0x1370bf…0b14c5 | Approve | 32,064,433 | 8 days agoSun, 09 Aug 2026 16:03:08 UTC | 0x5454…2288 | IN | punchingcat.com | $0.000 ETH | 0.00000123 | |
| 0x50fecd…bd3e94 | Approve | 32,064,382 | 8 days agoSun, 09 Aug 2026 16:03:03 UTC | 0x27f3…5466 | IN | punchingcat.com | $0.000 ETH | 0.00000126 | |
| 0xbbbbc6…fa4971 | Approve | 32,064,382 | 8 days agoSun, 09 Aug 2026 16:03:03 UTC | 0xb6dc…4498 | IN | punchingcat.com | $0.000 ETH | 0.00000126 | |
| 0xd1c8db…699268 | Approve | 32,064,369 | 8 days agoSun, 09 Aug 2026 16:03:01 UTC | 0x9c32…1d89 | IN | punchingcat.com | $0.000 ETH | 0.00000127 | |
| 0xbd470a…420291 | Approve | 32,064,338 | 8 days agoSun, 09 Aug 2026 16:02:58 UTC | 0xd255…b97b | IN | punchingcat.com | $0.000 ETH | 0.00000125 | |
| 0x8e28c4…693752 | Approve | 32,064,245 | 8 days agoSun, 09 Aug 2026 16:02:49 UTC | 0xbe32…7ae9 | IN | punchingcat.com | $0.000 ETH | 0.00000124 | |
| 0x4985e0…d09569 | Approve | 32,064,241 | 8 days agoSun, 09 Aug 2026 16:02:48 UTC | 0xca24…ba95 | IN | punchingcat.com | $0.000 ETH | 0.00000125 | |
| 0x80ed24…bde976 | Approve | 32,064,229 | 8 days agoSun, 09 Aug 2026 16:02:47 UTC | 0x341a…ffa4 | IN | punchingcat.com | $0.000 ETH | 0.00000125 | |
| 0x80b89f…e2cef2 | Approve | 32,063,992 | 8 days agoSun, 09 Aug 2026 16:02:23 UTC | 0x7f06…c411 | IN | punchingcat.com | $0.000 ETH | 0.00000125 | |
| 0x96d79a…669a8c | Approve | 32,063,920 | 8 days agoSun, 09 Aug 2026 16:02:16 UTC | 0x721a…1a34 | IN | punchingcat.com | $0.000 ETH | 0.00000124 | |
| 0xc8a685…27c84c | Approve | 32,063,900 | 8 days agoSun, 09 Aug 2026 16:02:14 UTC | 0x194a…0372 | IN | punchingcat.com | $0.000 ETH | 0.00000125 |
| Type | Age | Block | Details |
|---|---|---|---|
| no cross-chain L1↔L2 transactions for this address | |||
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0x241b51…99e5a0 | 5 days agoWed, 12 Aug 2026 14:14:02 UTC | Transfer | [0] 0x000000000000…d6299674 [1] 0x000000000000…90e8ae64 data: 0x000000000000000000…8d9e905e |
| 0x9eed97…792518 | 5 days agoWed, 12 Aug 2026 14:14:01 UTC | Approval | [0] 0x000000000000…d6299674 [1] 0x000000000000…72c22734 data: 0xffffffffffffffffff…ffffffff |
| 0xd0d8ee…435066 | 5 days agoWed, 12 Aug 2026 14:13:59 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…d6299674 data: 0x000000000000000000…8d9cd28b |
| 0x168cd9…bb6e32 | 5 days agoWed, 12 Aug 2026 12:04:53 UTC | Transfer | [0] 0x000000000000…4d8c0c94 [1] 0x000000000000…90e8ae64 data: 0x000000000000000000…fd2f5655 |
| 0x09b70d…1a2833 | 5 days agoWed, 12 Aug 2026 12:04:53 UTC | Approval | [0] 0x000000000000…4d8c0c94 [1] 0x000000000000…72c22734 data: 0xffffffffffffffffff…ffffffff |
| 0x0fc76e…950d39 | 5 days agoWed, 12 Aug 2026 12:04:51 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…4d8c0c94 data: 0x000000000000000000…fd2efb2e |
| 0x09db9c…0c534a | 7 days agoMon, 10 Aug 2026 22:37:19 UTC | Transfer | [0] 0x000000000000…09301cf1 [1] 0x000000000000…90e8ae64 data: 0x000000000000000000…66000000 |
| 0xe6aca5…571052 | 8 days agoSun, 09 Aug 2026 19:13:22 UTC | Transfer | [0] 0x000000000000…24c8fce5 [1] 0x000000000000…90e8ae64 data: 0x000000000000000000…54190e26 |
| 0x377304…cb185f | 8 days agoSun, 09 Aug 2026 19:07:58 UTC | Approval | [0] 0x000000000000…24c8fce5 [1] 0x000000000000…72c22734 data: 0xffffffffffffffffff…ffffffff |
| 0xa24eab…3db3d7 | 8 days agoSun, 09 Aug 2026 17:26:23 UTC | Transfer | [0] 0x000000000000…c7b516a0 [1] 0x000000000000…90e8ae64 data: 0x000000000000000000…ca47f470 |
| 0x1e9b28…6d4a13 | 8 days agoSun, 09 Aug 2026 17:26:23 UTC | Approval | [0] 0x000000000000…c7b516a0 [1] 0x000000000000…262c40dc data: 0x000000000000000000…ca47f470 |
| 0x5419ba…702fc2 | 8 days agoSun, 09 Aug 2026 16:53:28 UTC | Transfer | [0] 0x000000000000…a9f8e4bf [1] 0x000000000000…90e8ae64 data: 0x000000000000000000…409d3317 |
| 0x5419ba…702fc2 | 8 days agoSun, 09 Aug 2026 16:53:28 UTC | Approval | [0] 0x000000000000…a9f8e4bf [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…409d3317 |
| 0x5419ba…702fc2 | 8 days agoSun, 09 Aug 2026 16:53:28 UTC | Transfer | [0] 0x000000000000…868fba95 [1] 0x000000000000…a9f8e4bf data: 0x000000000000000000…409d3317 |
| 0x273817…344d67 | 8 days agoSun, 09 Aug 2026 16:50:07 UTC | Transfer | [0] 0x000000000000…20cbbe5f [1] 0x000000000000…90e8ae64 data: 0x000000000000000000…33c7904a |
| 0x273817…344d67 | 8 days agoSun, 09 Aug 2026 16:50:07 UTC | Transfer | [0] 0x000000000000…20cbbe5f [1] 0x000000000000…10d09799 data: 0x000000000000000000…98309ed6 |
| 0x273817…344d67 | 8 days agoSun, 09 Aug 2026 16:50:07 UTC | Transfer | [0] 0x000000000000…56a50b50 [1] 0x000000000000…20cbbe5f data: 0x000000000000000000…cbf82f20 |
| 0x306941…46217a | 8 days agoSun, 09 Aug 2026 16:50:06 UTC | Approval | [0] 0x000000000000…56a50b50 [1] 0x000000000000…72c22734 data: 0x000000000000000000…cbf82f20 |
| 0x70b5cf…e92257 | 8 days agoSun, 09 Aug 2026 16:49:50 UTC | Transfer | [0] 0x000000000000…fd3ce204 [1] 0x000000000000…ac40208f data: 0x000000000000000000…cbf82f21 |
| 0x70b5cf…e92257 | 8 days agoSun, 09 Aug 2026 16:49:50 UTC | Transfer | [0] 0x000000000000…fd3ce204 [1] 0x000000000000…56a50b50 data: 0x000000000000000000…cbf82f20 |
| 0x70b5cf…e92257 | 8 days agoSun, 09 Aug 2026 16:49:50 UTC | Transfer | [0] 0x000000000000…90e8ae64 [1] 0x000000000000…fd3ce204 data: 0x000000000000000000…97f05e41 |
| 0x8188f3…a5d20b | 8 days agoSun, 09 Aug 2026 16:46:45 UTC | Transfer | [0] 0x000000000000…a9f8e4bf [1] 0x000000000000…90e8ae64 data: 0x000000000000000000…3d61282e |
| 0x8188f3…a5d20b | 8 days agoSun, 09 Aug 2026 16:46:45 UTC | Approval | [0] 0x000000000000…a9f8e4bf [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…3d61282e |
| 0x8188f3…a5d20b | 8 days agoSun, 09 Aug 2026 16:46:45 UTC | Transfer | [0] 0x000000000000…85404609 [1] 0x000000000000…a9f8e4bf data: 0x000000000000000000…3d61282e |
| 0xcfb60d…17819a | 8 days agoSun, 09 Aug 2026 16:46:26 UTC | Transfer | [0] 0x000000000000…4e7cab6e [1] 0x000000000000…90e8ae64 data: 0x000000000000000000…db8650bd |
| Block | Age | Parent Transaction Hash | Type | Method | From | To | Value | |
|---|---|---|---|---|---|---|---|---|
| 32,056,805 | 8 days agoSun, 09 Aug 2026 15:50:24 UTC | 0xf629fe…9398a7 | CREATE | launch | 0xf441…e204 | IN | 0xf01e…3a30 | 0 ETH |