| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| no token holdings | ||||
// SPDX-License-Identifier: MIT
pragma solidity 0.8.30;
// A dead-plain, immutable, fixed-supply ERC20 — no _update override, no transfer restrictions, no
// privileged functions, no mint/burn. All supply is minted once to the launcher at construction. The
// launched token being an ordinary ERC20 is the whole point of the hook-level tax design: wallets and
// aggregators (GMGN, Dexscreener) see unrestricted transfers, so nothing is flagged as a honeypot.
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";
interface ILunchLauncherBase {
function baseTokenURI() external view returns (string memory);
}
contract LunchTokenPlain is ERC20 {
address public immutable launcher;
address public immutable creator;
constructor(
string memory name_,
string memory symbol_,
uint256 totalSupply_,
address launcher_,
address creator_
) ERC20(name_, symbol_) {
require(totalSupply_ > 0, "supply=0");
require(launcher_ != address(0), "launcher=0");
launcher = launcher_;
creator = creator_;
_mint(launcher_, totalSupply_);
}
// NO initLimits, NO _update override, NO privileged functions of any kind — a pure, immutable,
// fixed-supply ERC20 with unrestricted transfers from block 0. (launcher/creator are just public
// getters, kept for constructor-signature parity + so the auto-verify cron can read them.)
/// @notice Metadata for this coin: `<base><address>.json` (e.g. https://www.lunch.fun/t/0x8ec1….json),
/// resolving to JSON with description, image, banner and socials. Indexers (GMGN) read it.
/// @dev A `view` getter — it touches nothing in the transfer path, so the plain-ERC20 property
/// this contract exists to preserve is unchanged and honeypot simulators see the same
/// unrestricted buys/sells as before.
///
/// Stores no state. The address half derives from `address(this)` and the base is read from
/// the launcher rather than hardcoded, so a domain move is one owner call on the launcher
/// and repairs every coin at once — a baked-in constant would strand them all forever.
/// Profile edits stay off-chain and cost the creator no gas.
///
/// The launcher owner can only move where the JSON is fetched from; supply and transfers
/// stay untouchable. Never reverts: "" if no base is set or the launcher call fails.
function tokenURI() external view returns (string memory) {
try ILunchLauncherBase(launcher).baseTokenURI() returns (string memory base) {
if (bytes(base).length == 0) return "";
return string.concat(base, Strings.toHexString(address(this)), ".json");
} catch {
return "";
}
}
}[
{
"type": "constructor",
"inputs": [
{
"name": "name_",
"type": "string",
"internalType": "string"
},
{
"name": "symbol_",
"type": "string",
"internalType": "string"
},
{
"name": "totalSupply_",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "launcher_",
"type": "address",
"internalType": "address"
},
{
"name": "creator_",
"type": "address",
"internalType": "address"
}
],
"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": "StringsInsufficientHexLength",
"type": "error",
"inputs": [
{
"name": "value",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "length",
"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": "creator",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "decimals",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint8",
"internalType": "uint8"
}
],
"stateMutability": "view"
},
{
"name": "launcher",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "name",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "symbol",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "tokenURI",
"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"
}
]0x6080806040526004361015610012575f80fd5b5f3560e01c90816302d05d3f146105135750806306fdde0314610458578063095ea7b3146103d657806316eebd1e1461039257806318160ddd1461037557806323b872dd14610296578063313ce5671461027b5780633c130d901461026057806370a082311461022957806395d89b4114610125578063a9059cbb146100f45763dd62ed3e146100a0575f80fd5b346100f05760403660031901126100f0576100b961057e565b6100c1610594565b6001600160a01b039182165f908152600160209081526040808320949093168252928352819020549051908152f35b5f80fd5b346100f05760403660031901126100f05761011a61011061057e565b60243590336107fa565b602060405160018152f35b346100f0575f3660031901126100f0576040515f6004548060011c9060018116801561021f575b60208310811461020b578285529081156101e75750600114610189575b61018583610179818503826105aa565b60405191829182610554565b0390f35b91905060045f527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b915f905b8082106101cd57509091508101602001610179610169565b9192600181602092548385880101520191019092916101b5565b60ff191660208086019190915291151560051b840190910191506101799050610169565b634e487b7160e01b5f52602260045260245ffd5b91607f169161014c565b346100f05760203660031901126100f0576001600160a01b0361024a61057e565b165f525f602052602060405f2054604051908152f35b346100f0575f3660031901126100f0576101856101796105e0565b346100f0575f3660031901126100f057602060405160128152f35b346100f05760603660031901126100f0576102af61057e565b6102b7610594565b6001600160a01b0382165f818152600160209081526040808320338452909152902054909260443592915f1981106102f5575b5061011a93506107fa565b83811061035a5784156103475733156103345761011a945f52600160205260405f2060018060a01b0333165f526020528360405f2091039055846102ea565b634a1406b160e11b5f525f60045260245ffd5b63e602df0560e01b5f525f60045260245ffd5b8390637dc7a0d960e11b5f523360045260245260445260645ffd5b346100f0575f3660031901126100f0576020600254604051908152f35b346100f0575f3660031901126100f0576040517f000000000000000000000000c783221ab1db0244203458417981b4631e80b9886001600160a01b03168152602090f35b346100f05760403660031901126100f0576103ef61057e565b602435903315610347576001600160a01b031690811561033457335f52600160205260405f20825f526020528060405f20556040519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560203392a3602060405160018152f35b346100f0575f3660031901126100f0576040515f6003548060011c90600181168015610509575b60208310811461020b578285529081156101e757506001146104ab5761018583610179818503826105aa565b91905060035f527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b915f905b8082106104ef57509091508101602001610179610169565b9192600181602092548385880101520191019092916104d7565b91607f169161047f565b346100f0575f3660031901126100f0577f0000000000000000000000008367d463abda0b0270e81e6e5f5d701f8d3cf82d6001600160a01b03168152602090f35b602060409281835280519182918282860152018484015e5f828201840152601f01601f1916010190565b600435906001600160a01b03821682036100f057565b602435906001600160a01b03821682036100f057565b90601f8019910116810190811067ffffffffffffffff8211176105cc57604052565b634e487b7160e01b5f52604160045260245ffd5b60405163d547cfb760e01b81525f816004817f000000000000000000000000c783221ab1db0244203458417981b4631e80b9886001600160a01b03165afa5f918161076e575b50610640575060405161063a6020826105aa565b5f815290565b80511561075f57604051306106566060836105aa565b602a82526020820190604036833782511561074b576030825382516001101561074b576078602184015360295b600181116106f157506106d957602092836005926106d6946040519684889551918291018587015e840190838201905f8252519283915e010164173539b7b760d91b815203601a198101845201826105aa565b90565b63e22e27eb60e01b5f5230600452601460245260445ffd5b90600f8116601081101561074b57845183101561074b576f181899199a1a9b1b9c1cb0b131b232b360811b901a8483016020015360041c908015610737575f1901610683565b634e487b7160e01b5f52601160045260245ffd5b634e487b7160e01b5f52603260045260245ffd5b5060405161063a6020826105aa565b9091503d805f833e61078081836105aa565b8101906020818303126100f05780519067ffffffffffffffff82116100f0570181601f820112156100f05780519067ffffffffffffffff82116105cc57604051926107d5601f8401601f1916602001856105aa565b828452602083830101116100f057815f9260208093018386015e83010152905f610626565b6001600160a01b03169081156108a4576001600160a01b031691821561089157815f525f60205260405f205481811061087857817fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92602092855f525f84520360405f2055845f525f825260405f20818154019055604051908152a3565b8263391434e360e21b5f5260045260245260445260645ffd5b63ec442f0560e01b5f525f60045260245ffd5b634b637e8f60e11b5f525f60045260245ffdfea264697066735822122021467dc33f6e064a45e9f4d50726cdb439e3dba873793ec51885eedeb09c620c64736f6c634300081e0033
| Block | Age | Parent Transaction Hash | Type | Method | From | To | Value | |
|---|---|---|---|---|---|---|---|---|
| no internal transactions found for this address yet (traced blocks + on-demand) | ||||||||
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0x612f3d…9bfef4 | 13 hrs agoMon, 17 Aug 2026 13:55:47 UTC | Transfer | [0] 0x000000000000…8794fea6 [1] 0x000000000000…43e40951 data: 0x000000000000000000…6748ab3f |
| 0xf2b1be…451267 | 13 hrs agoMon, 17 Aug 2026 13:55:47 UTC | Approval | [0] 0x000000000000…8794fea6 [1] 0x000000000000…262c40dc data: 0x000000000000000000…6748ab3f |
| 0x40a49f…454b70 | 13 hrs agoMon, 17 Aug 2026 13:48:35 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…8794fea6 data: 0x000000000000000000…6748ab3f |
| 0xeb4fce…e333bb | 13 hrs agoMon, 17 Aug 2026 13:46:11 UTC | Transfer | [0] 0x000000000000…60df6b1f [1] 0x000000000000…43e40951 data: 0x000000000000000000…e5435921 |
| 0x609d6c…640718 | 13 hrs agoMon, 17 Aug 2026 13:46:11 UTC | Approval | [0] 0x000000000000…60df6b1f [1] 0x000000000000…262c40dc data: 0x000000000000000000…e5435921 |
| 0x98352d…8fcb41 | 13 hrs agoMon, 17 Aug 2026 13:46:05 UTC | Transfer | [0] 0x000000000000…8cec5d77 [1] 0x000000000000…43e40951 data: 0x000000000000000000…30bb2ec6 |
| 0x3a3c20…ac3098 | 13 hrs agoMon, 17 Aug 2026 13:46:05 UTC | Transfer | [0] 0x000000000000…679b21ba [1] 0x000000000000…43e40951 data: 0x000000000000000000…fb302db6 |
| 0x7016c6…547926 | 13 hrs agoMon, 17 Aug 2026 13:46:05 UTC | Approval | [0] 0x000000000000…679b21ba [1] 0x000000000000…262c40dc data: 0x000000000000000000…fb302db6 |
| 0xc36f1e…60a8d3 | 13 hrs agoMon, 17 Aug 2026 13:46:05 UTC | Transfer | [0] 0x000000000000…678fdf4f [1] 0x000000000000…43e40951 data: 0x000000000000000000…b9bf5375 |
| 0x5a824f…ffa5ca | 13 hrs agoMon, 17 Aug 2026 13:46:05 UTC | Approval | [0] 0x000000000000…678fdf4f [1] 0x000000000000…262c40dc data: 0x000000000000000000…b9bf5375 |
| 0x292980…1cb349 | 13 hrs agoMon, 17 Aug 2026 13:46:05 UTC | Transfer | [0] 0x000000000000…d275a936 [1] 0x000000000000…43e40951 data: 0x000000000000000000…e3575e14 |
| 0x9900ab…4c89b1 | 13 hrs agoMon, 17 Aug 2026 13:46:05 UTC | Approval | [0] 0x000000000000…d275a936 [1] 0x000000000000…262c40dc data: 0x000000000000000000…e3575e14 |
| 0xcd180a…1dcdad | 13 hrs agoMon, 17 Aug 2026 13:45:58 UTC | Transfer | [0] 0x000000000000…82fb8aaf [1] 0x000000000000…43e40951 data: 0x000000000000000000…cd6fc084 |
| 0xa6249a…f0603d | 13 hrs agoMon, 17 Aug 2026 13:45:58 UTC | Transfer | [0] 0x000000000000…78d41d98 [1] 0x000000000000…43e40951 data: 0x000000000000000000…7575e093 |
| 0xe890f2…946bfb | 13 hrs agoMon, 17 Aug 2026 13:45:58 UTC | Transfer | [0] 0x000000000000…4a4788e4 [1] 0x000000000000…43e40951 data: 0x000000000000000000…78fddba9 |
| 0xe890f2…946bfb | 13 hrs agoMon, 17 Aug 2026 13:45:58 UTC | Transfer | [0] 0x000000000000…43ef0723 [1] 0x000000000000…4a4788e4 data: 0x000000000000000000…78fddba9 |
| 0xcc5c12…3d1188 | 13 hrs agoMon, 17 Aug 2026 13:45:58 UTC | Transfer | [0] 0x000000000000…4a4788e4 [1] 0x000000000000…43e40951 data: 0x000000000000000000…cbee74f3 |
| 0xcc5c12…3d1188 | 13 hrs agoMon, 17 Aug 2026 13:45:58 UTC | Approval | [0] 0x000000000000…4a4788e4 [1] 0x000000000000…3ac78ba3 data: 0xffffffffffffffffff…ffffffff |
| 0xcc5c12…3d1188 | 13 hrs agoMon, 17 Aug 2026 13:45:58 UTC | Approval | [0] 0x000000000000…4a4788e4 [1] 0x000000000000…3ac78ba3 data: 0x000000000000000000…00000000 |
| 0xcc5c12…3d1188 | 13 hrs agoMon, 17 Aug 2026 13:45:58 UTC | Transfer | [0] 0x000000000000…7dba0e2c [1] 0x000000000000…4a4788e4 data: 0x000000000000000000…cbee74f3 |
| 0x19e7cc…647ec2 | 13 hrs agoMon, 17 Aug 2026 13:45:58 UTC | Transfer | [0] 0x000000000000…db8c0904 [1] 0x000000000000…43e40951 data: 0x000000000000000000…cc083844 |
| 0x19e7cc…647ec2 | 13 hrs agoMon, 17 Aug 2026 13:45:58 UTC | Transfer | [0] 0x000000000000…09d52e67 [1] 0x000000000000…db8c0904 data: 0x000000000000000000…cc083844 |
| 0xfe0cbd…c036b8 | 13 hrs agoMon, 17 Aug 2026 13:45:58 UTC | Transfer | [0] 0x000000000000…db8c0904 [1] 0x000000000000…43e40951 data: 0x000000000000000000…c634f450 |
| 0xfe0cbd…c036b8 | 13 hrs agoMon, 17 Aug 2026 13:45:58 UTC | Transfer | [0] 0x000000000000…d5db490e [1] 0x000000000000…db8c0904 data: 0x000000000000000000…c634f450 |
| 0x110975…c4503a | 13 hrs agoMon, 17 Aug 2026 13:45:53 UTC | Transfer | [0] 0x000000000000…cf41cfd1 [1] 0x000000000000…43e40951 data: 0x000000000000000000…99997fdb |
| 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 | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| no token transfers for this address yet | |||||||||
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0xf2b1be…451267 | Approve | 38,888,927 | 13 hrs agoMon, 17 Aug 2026 13:55:47 UTC | 0xba17…fea6 | IN | Reddit Founder's Cat | $0.000 ETH | 0.00000093 | |
| 0x609d6c…640718 | Approve | 38,883,163 | 13 hrs agoMon, 17 Aug 2026 13:46:11 UTC | 0x78b8…6b1f | IN | Reddit Founder's Cat | $0.000 ETH | 0.00000094 | |
| 0x7016c6…547926 | Approve | 38,883,109 | 13 hrs agoMon, 17 Aug 2026 13:46:05 UTC | 0x31d8…21ba | IN | Reddit Founder's Cat | $0.000 ETH | 0.00000094 | |
| 0x5a824f…ffa5ca | Approve | 38,883,107 | 13 hrs agoMon, 17 Aug 2026 13:46:05 UTC | 0xd26d…df4f | IN | Reddit Founder's Cat | $0.000 ETH | 0.00000093 | |
| 0x9900ab…4c89b1 | Approve | 38,883,105 | 13 hrs agoMon, 17 Aug 2026 13:46:05 UTC | 0x7781…a936 | IN | Reddit Founder's Cat | $0.000 ETH | 0.00000092 | |
| 0xf6e05a…963778 | Approve | 38,882,864 | 13 hrs agoMon, 17 Aug 2026 13:45:40 UTC | 0x25b7…fd7c | IN | Reddit Founder's Cat | $0.000 ETH | 0.00000094 | |
| 0xed40b9…f1138d | Approve | 38,882,864 | 13 hrs agoMon, 17 Aug 2026 13:45:40 UTC | 0x79b3…135d | IN | Reddit Founder's Cat | $0.000 ETH | 0.00000094 | |
| 0xe587fe…3e520b | Approve | 38,882,813 | 13 hrs agoMon, 17 Aug 2026 13:45:35 UTC | 0x81ab…69e9 | IN | Reddit Founder's Cat | $0.000 ETH | 0.00000093 | |
| 0xc93b62…9c0f84 | Approve | 38,882,813 | 13 hrs agoMon, 17 Aug 2026 13:45:35 UTC | 0x1d04…892d | IN | Reddit Founder's Cat | $0.000 ETH | 0.00000093 | |
| 0x49782c…9f7840 | Approve | 38,882,795 | 13 hrs agoMon, 17 Aug 2026 13:45:33 UTC | 0x0d5d…33cf | IN | Reddit Founder's Cat | $0.000 ETH | 0.00000095 | |
| 0xb32dfd…41cc14 | Approve | 38,882,586 | 13 hrs agoMon, 17 Aug 2026 13:45:12 UTC | 0x8ad6…c6a6 | IN | Reddit Founder's Cat | $0.000 ETH | 0.00000096 | |
| 0x05d604…4b96b3 | Approve | 38,882,578 | 13 hrs agoMon, 17 Aug 2026 13:45:12 UTC | 0xd665…2d20 | IN | Reddit Founder's Cat | $0.000 ETH | 0.00000092 | |
| 0x54946c…689f5d | Approve | 38,882,495 | 13 hrs agoMon, 17 Aug 2026 13:45:03 UTC | 0xa4ef…cfd1 | IN | Reddit Founder's Cat | $0.000 ETH | 0.00000094 | |
| 0x1f6e9f…61d846 | Approve | 38,882,462 | 13 hrs agoMon, 17 Aug 2026 13:45:00 UTC | 0x508e…8aaf | IN | Reddit Founder's Cat | $0.000 ETH | 0.00000094 | |
| 0x35bd85…609611 | Approve | 38,882,459 | 13 hrs agoMon, 17 Aug 2026 13:45:00 UTC | 0x48ad…1d98 | IN | Reddit Founder's Cat | $0.000 ETH | 0.00000093 | |
| 0x88ca21…82d472 | Approve | 38,882,456 | 13 hrs agoMon, 17 Aug 2026 13:44:59 UTC | 0xbc53…2e67 | IN | Reddit Founder's Cat | $0.000 ETH | 0.00000097 | |
| 0x4ce604…8102c5 | Approve | 38,882,456 | 13 hrs agoMon, 17 Aug 2026 13:44:59 UTC | 0x27a3…490e | IN | Reddit Founder's Cat | $0.000 ETH | 0.00000097 | |
| 0xa3cfdd…b91095 | Approve | 38,882,456 | 13 hrs agoMon, 17 Aug 2026 13:44:59 UTC | 0xbd11…0e2c | IN | Reddit Founder's Cat | $0.000 ETH | 0.00000097 | |
| 0xdb92b8…fa4737 | Approve | 38,882,455 | 13 hrs agoMon, 17 Aug 2026 13:44:59 UTC | 0x6491…0723 | IN | Reddit Founder's Cat | $0.000 ETH | 0.00000097 | |
| 0xd50531…4c19a3 | Approve | 38,882,296 | 13 hrs agoMon, 17 Aug 2026 13:44:43 UTC | 0xefdf…2154 | IN | Reddit Founder's Cat | $0.000 ETH | 0.00000094 | |
| 0x693269…fdb34c | Approve | 38,882,272 | 13 hrs agoMon, 17 Aug 2026 13:44:41 UTC | 0x2198…5d77 | IN | Reddit Founder's Cat | $0.000 ETH | 0.00000093 | |
| 0x2c485b…1d4733 | Approve | 38,882,071 | 13 hrs agoMon, 17 Aug 2026 13:44:21 UTC | 0xf030…0fc5 | IN | Reddit Founder's Cat | $0.000 ETH | 0.00000092 |