| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| no token holdings | ||||
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
/// @title PotatoToken
/// @notice Fixed-supply ERC-20. The entire supply is minted to the launchpad
/// (the deployer) in the constructor. There is no owner, no mint, no
/// pause, no blacklist — nothing a rug could hide in.
///
/// The ONE piece of logic beyond a vanilla ERC-20 is a time-boxed
/// anti-snipe max-wallet cap: for a short window after launch, no
/// non-exempt address may end a transfer holding more than
/// `maxWallet` tokens. This throttles bots from hoovering up the
/// single-sided launch supply in the first few blocks. It is enforced
/// purely on the receiving balance, exempts the launch infrastructure
/// (pad / pool / position manager / locker), and — critically — becomes
/// a complete no-op once `antiSnipeDeadlineBlock` passes, so it can
/// never interfere with normal trading afterwards.
contract PotatoToken is ERC20 {
/// @notice The launchpad that deployed this token (holds the full supply at genesis).
address public immutable pad;
/// @notice Max tokens a non-exempt wallet may hold during the anti-snipe window.
uint256 public immutable maxWallet;
/// @notice Last block (inclusive) at which the max-wallet cap is enforced.
uint256 public immutable antiSnipeDeadlineBlock;
/// @notice Addresses exempt from the anti-snipe cap (launch infrastructure).
mapping(address => bool) public antiSnipeExempt;
/// @notice The token's Uniswap V3 pool. Set once by the pad, right after the
/// pool is created (its address isn't known at construction time).
address public pool;
error OnlyPad();
error PoolAlreadySet();
error MaxWalletExceeded();
/// @param pad_ the deployer/launchpad; receives the full supply and is exempt.
/// @param positionManager_ Uniswap NonfungiblePositionManager (exempt).
/// @param locker_ the fee locker that holds the LP NFT (exempt).
/// @param maxWallet_ max non-exempt balance during the anti-snipe window.
/// @param antiSnipeBlocks_ length of the window in blocks (0 disables it).
constructor(
string memory name_,
string memory symbol_,
uint256 supply_,
address pad_,
address positionManager_,
address locker_,
uint256 maxWallet_,
uint256 antiSnipeBlocks_
) ERC20(name_, symbol_) {
pad = pad_;
maxWallet = maxWallet_;
antiSnipeDeadlineBlock = block.number + antiSnipeBlocks_;
antiSnipeExempt[pad_] = true;
antiSnipeExempt[positionManager_] = true;
antiSnipeExempt[locker_] = true;
// Fee-burn sink: the locker sends the launched-token side of swap fees here,
// which must never trip the max-wallet cap and revert a permissionless
// collect() during the anti-snipe window.
antiSnipeExempt[0x000000000000000000000000000000000000dEaD] = true;
_mint(pad_, supply_);
}
/// @notice One-time hook for the pad to register the pool as exempt once it
/// exists. The pool must be exempt because it custodies ~the entire
/// supply as single-sided LP.
function setPool(address pool_) external {
if (msg.sender != pad) revert OnlyPad();
if (pool != address(0)) revert PoolAlreadySet();
pool = pool_;
antiSnipeExempt[pool_] = true;
}
/// @notice Always address(0). PotatoToken has no owner, mint, pause, or
/// blacklist — it is renounced by construction (there was never an owner
/// to renounce). Exposed purely so scanners and DEX tools that detect
/// "renounced" via `owner() == address(0)` recognize it as such.
function owner() external pure returns (address) {
return address(0);
}
/// @dev Enforces the max-wallet cap on the recipient during the anti-snipe
/// window only. After `antiSnipeDeadlineBlock` this is a pure no-op, so
/// transfers behave exactly like a vanilla ERC-20 forever after.
function _update(address from, address to, uint256 value) internal override {
super._update(from, to, value);
if (block.number <= antiSnipeDeadlineBlock && to != address(0) && !antiSnipeExempt[to]) {
if (balanceOf(to) > maxWallet) revert MaxWalletExceeded();
}
}
}[
{
"type": "constructor",
"inputs": [
{
"name": "name_",
"type": "string",
"internalType": "string"
},
{
"name": "symbol_",
"type": "string",
"internalType": "string"
},
{
"name": "supply_",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "pad_",
"type": "address",
"internalType": "address"
},
{
"name": "positionManager_",
"type": "address",
"internalType": "address"
},
{
"name": "locker_",
"type": "address",
"internalType": "address"
},
{
"name": "maxWallet_",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "antiSnipeBlocks_",
"type": "uint256",
"internalType": "uint256"
}
],
"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": "MaxWalletExceeded",
"type": "error",
"inputs": []
},
{
"name": "OnlyPad",
"type": "error",
"inputs": []
},
{
"name": "PoolAlreadySet",
"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": "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": "antiSnipeDeadlineBlock",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "antiSnipeExempt",
"type": "function",
"inputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"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": "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": "owner",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "pure"
},
{
"name": "pad",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "pool",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "setPool",
"type": "function",
"inputs": [
{
"name": "pool_",
"type": "address",
"internalType": "address"
}
],
"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"
}
]0x608060408181526004918236101561001657600080fd5b600092833560e01c91826306fdde031461066757508163095ea7b3146105bd57816316f0115b1461059457816318160ddd1461057557816323b872dd1461047e578163313ce567146104625781634437152a146103b857816370a08231146103815781638da5cb5b146103665781639361266c1461032257816395d89b411461020157508063a9059cbb146101d1578063d21e00de14610197578063dd62ed3e1461014f578063ddf45597146101125763f8b45b05146100d557600080fd5b3461010e578160031936011261010e57602090517f000000000000000000000000000000000000000000108b2a2c280290940000008152f35b5080fd5b503461010e57602036600319011261010e5760209160ff9082906001600160a01b0361013c61078a565b1681526005855220541690519015158152f35b503461010e578060031936011261010e578060209261016c61078a565b6101746107a5565b6001600160a01b0391821683526001865283832091168252845220549051908152f35b503461010e578160031936011261010e57602090517f00000000000000000000000000000000000000000000000000000000018648de8152f35b503461010e578060031936011261010e576020906101fa6101f061078a565b60243590336107bb565b5160018152f35b83833461010e578160031936011261010e5780519082845460018160011c9060018316928315610318575b6020938484108114610305578388529081156102e95750600114610294575b505050829003601f01601f191682019267ffffffffffffffff841183851017610281575082918261027d925282610741565b0390f35b634e487b7160e01b815260418552602490fd5b8787529192508591837f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b8385106102d5575050505083010185808061024b565b8054888601830152930192849082016102bf565b60ff1916878501525050151560051b840101905085808061024b565b634e487b7160e01b895260228a52602489fd5b91607f169161022c565b50503461010e578160031936011261010e57517f000000000000000000000000e26e17b552a3f0361b0546443ffe58f7cf5090016001600160a01b03168152602090f35b50503461010e578160031936011261010e5751908152602090f35b50503461010e57602036600319011261010e5760209181906001600160a01b036103a961078a565b16815280845220549051908152f35b90503461045e57602036600319011261045e576103d361078a565b6001600160a01b03907f000000000000000000000000e26e17b552a3f0361b0546443ffe58f7cf5090018216330361044e576006549282841661044057501680916bffffffffffffffffffffffff60a01b1617600655825260056020528120600160ff1982541617905580f35b8451632fc00d1f60e11b8152fd5b8351630411cf3760e01b81528390fd5b8280fd5b50503461010e578160031936011261010e576020905160128152f35b905082346105725760603660031901126105725761049a61078a565b6104a26107a5565b916044359360018060a01b0383168083526001602052868320338452602052868320549160001983106104de575b6020886101fa8989896107bb565b86831061054657811561052f573315610518575082526001602090815286832033845281529186902090859003905582906101fa876104d0565b8751634a1406b160e11b8152908101849052602490fd5b875163e602df0560e01b8152908101849052602490fd5b8751637dc7a0d960e11b8152339181019182526020820193909352604081018790528291506060010390fd5b80fd5b50503461010e578160031936011261010e576020906002549051908152f35b50503461010e578160031936011261010e5760065490516001600160a01b039091168152602090f35b90503461045e578160031936011261045e576105d761078a565b602435903315610650576001600160a01b031691821561063957508083602095338152600187528181208582528752205582519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925843392a35160018152f35b8351634a1406b160e11b8152908101859052602490fd5b835163e602df0560e01b8152808401869052602490fd5b8490843461045e578260031936011261045e578260035460018160011c9060018316928315610737575b6020938484108114610305578388529081156102e957506001146106e157505050829003601f01601f191682019267ffffffffffffffff841183851017610281575082918261027d925282610741565b600387529192508591837fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b838510610723575050505083010185808061024b565b80548886018301529301928490820161070d565b91607f1691610691565b6020808252825181830181905290939260005b82811061077657505060409293506000838284010152601f8019910116010190565b818101860151848201604001528501610754565b600435906001600160a01b03821682036107a057565b600080fd5b602435906001600160a01b03821682036107a057565b916001600160a01b038084169283156109195716918215610900576000918183528260205260409485842054908282106108cf575060208284937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef938896885287845203888720558486528786208181540190558751908152a37f00000000000000000000000000000000000000000000000000000000018648de431115806108c7575b806108b1575b61086e57505050565b829181528060205220547f000000000000000000000000000000000000000000108b2a2c28029094000000106108a15750565b51632ce93b5960e01b8152600490fd5b50818152600560205260ff838220541615610865565b50600161085f565b865163391434e360e21b81526001600160a01b03919091166004820152602481019190915260448101829052606490fd5b60405163ec442f0560e01b815260006004820152602490fd5b604051634b637e8f60e11b815260006004820152602490fdfea2646970667358221220a58e038a32064fab4162caf38ca7cc288982ed0c1073f047798afd5990e8b4a764736f6c63430008180033
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0x9b2e75…25927f | 17 days agoThu, 30 Jul 2026 19:26:54 UTC | Transfer | [0] 0x000000000000…7e680f6e [1] 0x000000000000…0000dead data: 0x000000000000000000…f1819677 |
| 0x9b2e75…25927f | 17 days agoThu, 30 Jul 2026 19:26:54 UTC | Transfer | [0] 0x000000000000…d1820f1a [1] 0x000000000000…7e680f6e data: 0x000000000000000000…f1819677 |
| 0x0578bf…db7241 | 26 days agoMon, 20 Jul 2026 22:23:55 UTC | Transfer | [0] 0x000000000000…db8c0904 [1] 0x000000000000…d1820f1a data: 0x000000000000000000…8fa0522d |
| 0x0578bf…db7241 | 26 days agoMon, 20 Jul 2026 22:23:55 UTC | Transfer | [0] 0x000000000000…959fccc4 [1] 0x000000000000…db8c0904 data: 0x000000000000000000…8fa0522d |
| 0x0578bf…db7241 | 26 days agoMon, 20 Jul 2026 22:23:55 UTC | Transfer | [0] 0x000000000000…d48f4c18 [1] 0x000000000000…959fccc4 data: 0x000000000000000000…8fa0522d |
| 0xe5cc6c…85f55e | 26 days agoMon, 20 Jul 2026 22:18:10 UTC | Transfer | [0] 0x000000000000…725599c7 [1] 0x000000000000…d1820f1a data: 0x000000000000000000…43675cde |
| 0x675191…ef0be2 | 26 days agoMon, 20 Jul 2026 22:18:10 UTC | Transfer | [0] 0x000000000000…28cf5ea2 [1] 0x000000000000…d1820f1a data: 0x000000000000000000…48f0b2f3 |
| 0x42fc63…da1704 | 26 days agoMon, 20 Jul 2026 22:18:10 UTC | Transfer | [0] 0x000000000000…7cfc3264 [1] 0x000000000000…d1820f1a data: 0x000000000000000000…30cd7bac |
| 0xe21a36…a33538 | 26 days agoMon, 20 Jul 2026 22:18:10 UTC | Transfer | [0] 0x000000000000…a35fb424 [1] 0x000000000000…d1820f1a data: 0x000000000000000000…5ea26d57 |
| 0x76be4a…1ace6f | 26 days agoMon, 20 Jul 2026 22:18:10 UTC | Approval | [0] 0x000000000000…a35fb424 [1] 0x000000000000…262c40dc data: 0xffffffffffffffffff…ffffffff |
| 0xa993ae…006606 | 26 days agoMon, 20 Jul 2026 22:18:10 UTC | Approval | [0] 0x000000000000…7cfc3264 [1] 0x000000000000…262c40dc data: 0xffffffffffffffffff…ffffffff |
| 0xe18d81…d1c1b4 | 26 days agoMon, 20 Jul 2026 22:18:10 UTC | Approval | [0] 0x000000000000…28cf5ea2 [1] 0x000000000000…262c40dc data: 0xffffffffffffffffff…ffffffff |
| 0xcfb16b…42916c | 26 days agoMon, 20 Jul 2026 22:18:10 UTC | Approval | [0] 0x000000000000…725599c7 [1] 0x000000000000…262c40dc data: 0xffffffffffffffffff…ffffffff |
| 0xc7c41b…70487b | 26 days agoMon, 20 Jul 2026 22:05:07 UTC | Transfer | [0] 0x000000000000…c8aebb4f [1] 0x000000000000…d1820f1a data: 0x000000000000000000…ddf5422e |
| 0xc7c41b…70487b | 26 days agoMon, 20 Jul 2026 22:05:07 UTC | Transfer | [0] 0x000000000000…ab3150a1 [1] 0x000000000000…c8aebb4f data: 0x000000000000000000…ddf5422e |
| 0xe932f5…c24b14 | 26 days agoMon, 20 Jul 2026 22:05:07 UTC | Approval | [0] 0x000000000000…ab3150a1 [1] 0x000000000000…e1a4f53d data: 0xffffffffffffffffff…ffffffff |
| 0x887eee…55b561 | 26 days agoMon, 20 Jul 2026 22:02:39 UTC | Transfer | [0] 0x000000000000…321fbbbd [1] 0x000000000000…d1820f1a data: 0x000000000000000000…a64940ef |
| 0xc7f834…7b4c28 | 26 days agoMon, 20 Jul 2026 22:02:39 UTC | Transfer | [0] 0x000000000000…5e43c015 [1] 0x000000000000…d1820f1a data: 0x000000000000000000…c9891574 |
| 0x17a1a6…b7ef58 | 26 days agoMon, 20 Jul 2026 22:02:38 UTC | Transfer | [0] 0x000000000000…0fa90cb4 [1] 0x000000000000…d1820f1a data: 0x000000000000000000…6278f1ec |
| 0xc02b44…41d278 | 26 days agoMon, 20 Jul 2026 22:02:38 UTC | Transfer | [0] 0x000000000000…647b3ae2 [1] 0x000000000000…d1820f1a data: 0x000000000000000000…d28ae5e3 |
| 0x793622…5948f6 | 26 days agoMon, 20 Jul 2026 22:02:38 UTC | Transfer | [0] 0x000000000000…8ba7d47c [1] 0x000000000000…d1820f1a data: 0x000000000000000000…286b0a00 |
| 0x15eb99…e6dd0a | 26 days agoMon, 20 Jul 2026 22:02:38 UTC | Approval | [0] 0x000000000000…321fbbbd [1] 0x000000000000…262c40dc data: 0xffffffffffffffffff…ffffffff |
| 0x3664d9…ff95ee | 26 days agoMon, 20 Jul 2026 22:02:38 UTC | Approval | [0] 0x000000000000…0fa90cb4 [1] 0x000000000000…262c40dc data: 0xffffffffffffffffff…ffffffff |
| 0x1e687c…8efe36 | 26 days agoMon, 20 Jul 2026 22:02:38 UTC | Approval | [0] 0x000000000000…8ba7d47c [1] 0x000000000000…262c40dc data: 0xffffffffffffffffff…ffffffff |
| 0xa6c268…c6651d | 26 days agoMon, 20 Jul 2026 22:02:38 UTC | Approval | [0] 0x000000000000…647b3ae2 [1] 0x000000000000…262c40dc data: 0xffffffffffffffffff…ffffffff |
| Type | Age | Block | Details |
|---|---|---|---|
| no cross-chain L1↔L2 transactions for this address | |||
| Transaction Hash | Method | Block | Age | From | To | Type | Item | ||
|---|---|---|---|---|---|---|---|---|---|
| no NFT transfers for this address yet | |||||||||
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0xe18d81…d1c1b4 | Approve | 15,054,299 | 26 days agoMon, 20 Jul 2026 22:18:10 UTC | 0x48f0…5ea2 | IN | POND Cat | $0.000 ETH | 0.00000271 | |
| 0xa993ae…006606 | Approve | 15,054,299 | 26 days agoMon, 20 Jul 2026 22:18:10 UTC | 0xbc21…3264 | IN | POND Cat | $0.000 ETH | 0.00000271 | |
| 0xcfb16b…42916c | Approve | 15,054,299 | 26 days agoMon, 20 Jul 2026 22:18:10 UTC | 0x608e…99c7 | IN | POND Cat | $0.000 ETH | 0.00000271 | |
| 0x76be4a…1ace6f | Approve | 15,054,299 | 26 days agoMon, 20 Jul 2026 22:18:10 UTC | 0xd73c…b424 | IN | POND Cat | $0.000 ETH | 0.00000271 | |
| 0xe932f5…c24b14 | Approve | 15,046,481 | 26 days agoMon, 20 Jul 2026 22:05:07 UTC | 0xe125…50a1 | IN | POND Cat | $0.000 ETH | 0.00000265 | |
| 0x15eb99…e6dd0a | Approve | 15,045,006 | 26 days agoMon, 20 Jul 2026 22:02:38 UTC | 0x8ee1…bbbd | IN | POND Cat | $0.000 ETH | 0.00000267 | |
| 0x3664d9…ff95ee | Approve | 15,045,006 | 26 days agoMon, 20 Jul 2026 22:02:38 UTC | 0x01c4…0cb4 | IN | POND Cat | $0.000 ETH | 0.00000267 | |
| 0xfc520b…50a362 | Approve | 15,045,006 | 26 days agoMon, 20 Jul 2026 22:02:38 UTC | 0x0c6b…c015 | IN | POND Cat | $0.000 ETH | 0.00000267 | |
| 0xa6c268…c6651d | Approve | 15,045,006 | 26 days agoMon, 20 Jul 2026 22:02:38 UTC | 0xa81e…3ae2 | IN | POND Cat | $0.000 ETH | 0.00000267 | |
| 0x1e687c…8efe36 | Approve | 15,045,006 | 26 days agoMon, 20 Jul 2026 22:02:38 UTC | 0x446c…d47c | IN | POND Cat | $0.000 ETH | 0.00000267 | |
| 0x6c1304…7cae71 | Approve | 15,020,281 | 26 days agoMon, 20 Jul 2026 21:21:25 UTC | 0xc9bb…4c18 | IN | POND Cat | $0.000 ETH | 0.00000267 |
| Transaction Hash | Method | Block | Age | From | To | Amount | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| no token transfers for this address yet | |||||||||
| Block | Age | Parent Transaction Hash | Type | Method | From | To | Value | |
|---|---|---|---|---|---|---|---|---|
| 15,010,531 | 26 days agoMon, 20 Jul 2026 21:05:08 UTC | 0xcb7402…0e8268 | CREATE2 | createToken | 0xe26e…9001 | IN | 0x7cc9…d64f | 0 ETH |