// SPDX-License-Identifier: MIT
pragma solidity ^0.8.26;
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
/*//////////////////////////////////////////////////////////////////////////////
// //
// pew.fun //
// the sniper-resistant launchpad //
// https://pew.fun //
// //
//////////////////////////////////////////////////////////////////////////////*/
/// @title PewToken
/// @author pew.fun (https://pew.fun)
/// @notice The immutable ERC-20 minted by every pew.fun launch — instant launch and crew/party alike.
/// Ownerless by design: no owner, no mint after construction, no tax, no pause, no blacklist.
/// There is nothing to rug, so it passes honeypot/rug scanners cleanly. On-chain metadata (logo +
/// socials) lets explorers and aggregators render the coin without an off-chain index.
///
/// The ONLY privileged action is a one-time `configure` by the launcher at launch — it wires the
/// pool and a short, timestamp-bounded anti-snipe window. Once that window closes the token is a
/// plain, unrestricted ERC-20 forever.
///
/// @dev Anti-snipe is TIMESTAMP-based, not block-based: on Arbitrum/Orbit `block.number` is the
/// parent-chain block number, which the frontend can't read reliably — `block.timestamp` is
/// unambiguous on both sides and matches the app's launch countdown.
/// @custom:security-contact security@pew.fun
contract PewToken is ERC20 {
/// @notice The factory / crew contract that launched this token (holds the initial supply at mint).
address public immutable launcher;
// ─────────────────────────────────── on-chain metadata ───────────────────────────────────
string public logoURI;
string public description;
string public twitter;
string public telegram;
string public website;
// ──────────────────────────── launch protections (set once at launch) ────────────────────────────
address public pool; // the token's Uniswap V3 pool
uint256 public maxWallet; // per-wallet cap during the anti-snipe window (0 = cap disabled)
uint256 public tradingOpensAt; // public trading is blocked before this timestamp (launch-delay gate)
uint256 public capUntil; // the max-wallet cap is enforced until this timestamp
bool private _configured;
constructor(
string memory name_,
string memory symbol_,
uint256 supply_,
address launcher_,
string memory logoURI_,
string memory description_,
string memory twitter_,
string memory telegram_,
string memory website_
) ERC20(name_, symbol_) {
launcher = launcher_;
logoURI = logoURI_;
description = description_;
twitter = twitter_;
telegram = telegram_;
website = website_;
_mint(launcher_, supply_); // full supply to the launcher; there is no other mint path
}
/// @notice One-time launch wiring by the launcher: set the pool + the anti-snipe window. Windows are
/// in SECONDS. Reverts if called by anyone but the launcher, or a second time.
function configure(address pool_, uint256 maxWallet_, uint256 launchDelaySecs, uint256 capWindowSecs)
external
{
require(msg.sender == launcher && !_configured, "not launcher / configured");
_configured = true;
pool = pool_;
maxWallet = maxWallet_;
tradingOpensAt = block.timestamp + launchDelaySecs;
capUntil = tradingOpensAt + capWindowSecs;
}
/// @notice True once the token is configured and public trading has opened.
function tradingOpen() external view returns (bool) {
return _configured && block.timestamp >= tradingOpensAt;
}
/// @dev Launch protections apply ONLY to public trades — transfers touching the pool where neither side
/// is the launcher. The launcher (its exempt first buy + any distributions) is never restricted.
/// 1. launch-delay: public trading is blocked until `tradingOpensAt`.
/// 2. anti-snipe: for `capUntil` after trading opens, a public buy can't push a wallet past
/// `maxWallet` (skipped when `maxWallet == 0`, so it can never brick trading).
function _update(address from, address to, uint256 value) internal override {
if (_configured && (from == pool || to == pool) && from != launcher && to != launcher) {
require(block.timestamp >= tradingOpensAt, "launch: trading not open");
if (maxWallet != 0 && block.timestamp < capUntil && to != pool && to != address(0)) {
require(balanceOf(to) + value <= maxWallet, "anti-snipe: max wallet");
}
}
super._update(from, to, value);
}
}[
{
"type": "constructor",
"inputs": [
{
"name": "name_",
"type": "string",
"internalType": "string"
},
{
"name": "symbol_",
"type": "string",
"internalType": "string"
},
{
"name": "supply_",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "launcher_",
"type": "address",
"internalType": "address"
},
{
"name": "logoURI_",
"type": "string",
"internalType": "string"
},
{
"name": "description_",
"type": "string",
"internalType": "string"
},
{
"name": "twitter_",
"type": "string",
"internalType": "string"
},
{
"name": "telegram_",
"type": "string",
"internalType": "string"
},
{
"name": "website_",
"type": "string",
"internalType": "string"
}
],
"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": "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": "capUntil",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "configure",
"type": "function",
"inputs": [
{
"name": "pool_",
"type": "address",
"internalType": "address"
},
{
"name": "maxWallet_",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "launchDelaySecs",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "capWindowSecs",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "decimals",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint8",
"internalType": "uint8"
}
],
"stateMutability": "view"
},
{
"name": "description",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "launcher",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "logoURI",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"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": "symbol",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "telegram",
"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": "tradingOpen",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "view"
},
{
"name": "tradingOpensAt",
"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": "twitter",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "website",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
}
]0x60806040526004361015610011575f80fd5b5f3560e01c806306fdde0314610a8b578063095ea7b314610a0957806316eebd1e146109c557806316f0115b1461099d57806318160ddd1461098057806323b872dd146108a0578063313ce56714610885578063425173411461078f57806347ecb665146106ba5780634889448c1461069d57806356c1b9d1146106805780636bb38b28146105ab57806370a08231146105745780637284e4161461049f57806395d89b41146103ca578063a9059cbb14610399578063abfaeee0146102c4578063beb0a416146101a6578063dd62ed3e14610156578063f8b45b05146101395763ffb54a9914610100575f80fd5b34610135575f3660031901126101355760ff600e541680610129575b6020906040519015158152f35b50600c5442101561011c565b5f80fd5b34610135575f366003190112610135576020600b54604051908152f35b346101355760403660031901126101355761016f610b8a565b610177610ba0565b6001600160a01b039182165f908152600160209081526040808320949093168252928352819020549051908152f35b34610135575f366003190112610135576040515f6009548060011c906001811680156102ba575b6020831081146102a65782855290811561028a5750600114610234575b50819003601f01601f191681019067ffffffffffffffff821181831017610220576040829052819061021c9082610b60565b0390f35b634e487b7160e01b5f52604160045260245ffd5b60095f9081529091507f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af5b828210610274575060209150820101826101ea565b600181602092548385880101520191019061025f565b90506020925060ff191682840152151560051b820101826101ea565b634e487b7160e01b5f52602260045260245ffd5b91607f16916101cd565b34610135575f366003190112610135576040515f6007548060011c9060018116801561038f575b6020831081146102a65782855290811561028a57506001146103395750819003601f01601f191681019067ffffffffffffffff821181831017610220576040829052819061021c9082610b60565b60075f9081529091507fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6885b828210610379575060209150820101826101ea565b6001816020925483858801015201910190610364565b91607f16916102eb565b34610135576040366003190112610135576103bf6103b5610b8a565b6024359033610bd7565b602060405160018152f35b34610135575f366003190112610135576040515f6004548060011c90600181168015610495575b6020831081146102a65782855290811561028a575060011461043f5750819003601f01601f191681019067ffffffffffffffff821181831017610220576040829052819061021c9082610b60565b60045f9081529091507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b82821061047f575060209150820101826101ea565b600181602092548385880101520191019061046a565b91607f16916103f1565b34610135575f366003190112610135576040515f6006548060011c9060018116801561056a575b6020831081146102a65782855290811561028a57506001146105145750819003601f01601f191681019067ffffffffffffffff821181831017610220576040829052819061021c9082610b60565b60065f9081529091507ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f5b828210610554575060209150820101826101ea565b600181602092548385880101520191019061053f565b91607f16916104c6565b34610135576020366003190112610135576001600160a01b03610595610b8a565b165f525f602052602060405f2054604051908152f35b34610135575f366003190112610135576040515f6005548060011c90600181168015610676575b6020831081146102a65782855290811561028a57506001146106205750819003601f01601f191681019067ffffffffffffffff821181831017610220576040829052819061021c9082610b60565b60055f9081529091507f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db05b828210610660575060209150820101826101ea565b600181602092548385880101520191019061064b565b91607f16916105d2565b34610135575f366003190112610135576020600d54604051908152f35b34610135575f366003190112610135576020600c54604051908152f35b34610135575f366003190112610135576040515f6008548060011c90600181168015610785575b6020831081146102a65782855290811561028a575060011461072f5750819003601f01601f191681019067ffffffffffffffff821181831017610220576040829052819061021c9082610b60565b60085f9081529091507ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee35b82821061076f575060209150820101826101ea565b600181602092548385880101520191019061075a565b91607f16916106e1565b34610135576080366003190112610135576107a8610b8a565b337f0000000000000000000000003364e68a4454d18132d0a2ac538c9663698282916001600160a01b03161480610878575b1561083357600160ff19600e541617600e5560018060a01b03166bffffffffffffffffffffffff60a01b600a541617600a55602435600b5561082e61082160443542610bb6565b80600c5560643590610bb6565b600d55005b60405162461bcd60e51b815260206004820152601960248201527f6e6f74206c61756e63686572202f20636f6e66696775726564000000000000006044820152606490fd5b5060ff600e5416156107da565b34610135575f36600319011261013557602060405160128152f35b34610135576060366003190112610135576108b9610b8a565b6108c1610ba0565b6001600160a01b0382165f818152600160208181526040808420338552909152909120549193604435939290918101610900575b506103bf9350610bd7565b83811061096557841561095257331561093f576103bf945f52600160205260405f2060018060a01b0333165f526020528360405f2091039055846108f5565b634a1406b160e11b5f525f60045260245ffd5b63e602df0560e01b5f525f60045260245ffd5b8390637dc7a0d960e11b5f523360045260245260445260645ffd5b34610135575f366003190112610135576020600254604051908152f35b34610135575f36600319011261013557600a546040516001600160a01b039091168152602090f35b34610135575f366003190112610135576040517f0000000000000000000000003364e68a4454d18132d0a2ac538c9663698282916001600160a01b03168152602090f35b3461013557604036600319011261013557610a22610b8a565b602435903315610952576001600160a01b031690811561093f57335f52600160205260405f20825f526020528060405f20556040519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560203392a3602060405160018152f35b34610135575f366003190112610135576040515f6003548060011c90600181168015610b56575b6020831081146102a65782855290811561028a5750600114610b005750819003601f01601f191681019067ffffffffffffffff821181831017610220576040829052819061021c9082610b60565b60035f9081529091507fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b828210610b40575060209150820101826101ea565b6001816020925483858801015201910190610b2b565b91607f1691610ab2565b602060409281835280519182918282860152018484015e5f828201840152601f01601f1916010190565b600435906001600160a01b038216820361013557565b602435906001600160a01b038216820361013557565b91908201809211610bc357565b634e487b7160e01b5f52601160045260245ffd5b6001600160a01b0316908115610e23576001600160a01b0316918215610e105760ff600e541680610de8575b80610db5575b80610d82575b610c8b575b815f525f60205260405f2054818110610c7257817fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92602092855f525f84520360405f2055845f525f825260405f20818154019055604051908152a3565b8263391434e360e21b5f5260045260245260445260645ffd5b600c544210610d3d57600b5480151580610d32575b80610d1d575b80610d15575b610cb7575b50610c14565b835f525f602052610ccc8260405f2054610bb6565b11610cd7575f610cb1565b60405162461bcd60e51b8152602060048201526016602482015275185b9d1a4b5cdb9a5c194e881b585e081dd85b1b195d60521b6044820152606490fd5b506001610cac565b50600a546001600160a01b0316841415610ca6565b50600d544210610ca0565b60405162461bcd60e51b815260206004820152601860248201527f6c61756e63683a2074726164696e67206e6f74206f70656e00000000000000006044820152606490fd5b507f0000000000000000000000003364e68a4454d18132d0a2ac538c9663698282916001600160a01b0316831415610c0f565b507f0000000000000000000000003364e68a4454d18132d0a2ac538c9663698282916001600160a01b0316821415610c09565b50600a546001600160a01b0316828114908115610e06575b50610c03565b905083145f610e00565b63ec442f0560e01b5f525f60045260245ffd5b634b637e8f60e11b5f525f60045260245ffdfea264697066735822122037a3a20d04e9bfae95d0f2b08275b1af4ca6c4413d186cd1b4ba1c460399b67164736f6c634300081a0033
| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| no token holdings | ||||
| Transaction Hash | Method | Block | Age | From | To | Amount | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| no token transfers for this address yet | |||||||||
| 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 ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0xa54574…2a0122 | Approve | 21,501,710 | 20 days agoTue, 28 Jul 2026 09:57:26 UTC | 0x2223…118f | IN | pew | $0.000 ETH | 0.00000141 | |
| 0x031944…5ff144 | Approve | 21,501,662 | 20 days agoTue, 28 Jul 2026 09:57:21 UTC | 0x2223…118f | IN | pew | $0.000 ETH | 0.00000141 | |
| 0x008807…8bed11 | Approve | 21,501,654 | 20 days agoTue, 28 Jul 2026 09:57:20 UTC | 0x2223…118f | IN | pew | $0.000 ETH | 0.00000142 | |
| 0x8671f7…761f5d | Approve | 18,827,757 | 23 days agoSat, 25 Jul 2026 07:23:31 UTC | 0xad01…fce5 | IN | pew | $0.000 ETH | 0.00000421 | |
| 0xa6d463…771f57 | Approve | 18,464,634 | 24 days agoFri, 24 Jul 2026 21:15:50 UTC | 0x1d5a…7c58 | IN | pew | $0.000 ETH | 0.00000500 | |
| 0x4e6b6c…5060ab | Approve | 18,464,057 | 24 days agoFri, 24 Jul 2026 21:14:52 UTC | 0x1d5a…7c58 | IN | pew | $0.000 ETH | 0.00000505 | |
| 0xa0164d…fa761b | Approve | 18,462,963 | 24 days agoFri, 24 Jul 2026 21:13:02 UTC | 0x4b08…70f2 | IN | pew | $0.000 ETH | 0.00000500 | |
| 0x9fdbc9…eff92b | Approve | 18,462,948 | 24 days agoFri, 24 Jul 2026 21:13:00 UTC | 0xd216…e075 | IN | pew | $0.000 ETH | 0.00000496 | |
| 0xbc54fa…9c1221 | Approve | 18,462,948 | 24 days agoFri, 24 Jul 2026 21:13:00 UTC | 0x586d…e870 | IN | pew | $0.000 ETH | 0.00000496 | |
| 0x09036a…5f3552 | Approve | 18,462,948 | 24 days agoFri, 24 Jul 2026 21:13:00 UTC | 0x4086…6c57 | IN | pew | $0.000 ETH | 0.00000496 | |
| 0x3c886e…e940ff | Approve | 18,462,948 | 24 days agoFri, 24 Jul 2026 21:13:00 UTC | 0xcfb0…4505 | IN | pew | $0.000 ETH | 0.00000496 | |
| 0x7a2595…d4e5bb | Approve | 18,462,887 | 24 days agoFri, 24 Jul 2026 21:12:54 UTC | 0x1837…2b0f | IN | pew | $0.000 ETH | 0.00000496 | |
| 0xdce18f…029760 | Approve | 18,462,525 | 24 days agoFri, 24 Jul 2026 21:12:18 UTC | 0x111d…f711 | IN | pew | $0.000 ETH | 0.00000504 | |
| 0xd4537c…76cbcb | Approve | 18,462,525 | 24 days agoFri, 24 Jul 2026 21:12:18 UTC | 0xfde1…5598 | IN | pew | $0.000 ETH | 0.00000504 | |
| 0xcdb87b…ccdd42 | Approve | 18,462,487 | 24 days agoFri, 24 Jul 2026 21:12:14 UTC | 0x0f10…08a3 | IN | pew | $0.000 ETH | 0.00000495 | |
| 0xa01f78…38a089 | Approve | 18,462,487 | 24 days agoFri, 24 Jul 2026 21:12:14 UTC | 0xbacc…6db9 | IN | pew | $0.000 ETH | 0.00000495 | |
| 0xade797…e59c3d | Approve | 18,462,364 | 24 days agoFri, 24 Jul 2026 21:12:01 UTC | 0x2223…118f | IN | pew | $0.000 ETH | 0.00000504 | |
| 0x022df9…d6c2a1 | Approve | 18,462,317 | 24 days agoFri, 24 Jul 2026 21:11:57 UTC | 0xa5d3…8839 | IN | pew | $0.000 ETH | 0.00000495 | |
| 0xcb6787…52a551 | Approve | 18,462,317 | 24 days agoFri, 24 Jul 2026 21:11:57 UTC | 0x7d9f…01ea | IN | pew | $0.000 ETH | 0.00000495 | |
| 0x2b15e3…6e9cfb | Approve | 18,462,316 | 24 days agoFri, 24 Jul 2026 21:11:57 UTC | 0x5921…a6cb | IN | pew | $0.000 ETH | 0.00000500 | |
| 0x71210e…333105 | Approve | 18,462,296 | 24 days agoFri, 24 Jul 2026 21:11:55 UTC | 0x1837…2b0f | IN | pew | $0.000 ETH | 0.00000498 | |
| 0x81da64…b10539 | Approve | 18,462,160 | 24 days agoFri, 24 Jul 2026 21:11:41 UTC | 0xc357…93c6 | IN | pew | $0.000 ETH | 0.00000496 | |
| 0xc61d77…60bbec | Approve | 18,462,159 | 24 days agoFri, 24 Jul 2026 21:11:41 UTC | 0x8f58…83ca | IN | pew | $0.000 ETH | 0.00000495 | |
| 0x79bd3a…070949 | Approve | 18,462,159 | 24 days agoFri, 24 Jul 2026 21:11:41 UTC | 0x2944…fc55 | IN | pew | $0.000 ETH | 0.00000495 | |
| 0x0b636e…ea8337 | Approve | 18,462,106 | 24 days agoFri, 24 Jul 2026 21:11:35 UTC | 0x4b08…70f2 | IN | pew | $0.000 ETH | 0.00000497 |
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0xca777e…2fdf41 | 20 days agoTue, 28 Jul 2026 09:57:31 UTC | Transfer | [0] 0x000000000000…c8aebb4f [1] 0x000000000000…42123db8 data: 0x000000000000000000…4ae57e44 |
| 0xca777e…2fdf41 | 20 days agoTue, 28 Jul 2026 09:57:31 UTC | Transfer | [0] 0x000000000000…e8b7118f [1] 0x000000000000…c8aebb4f data: 0x000000000000000000…4ae57e44 |
| 0xa54574…2a0122 | 20 days agoTue, 28 Jul 2026 09:57:26 UTC | Approval | [0] 0x000000000000…e8b7118f [1] 0x000000000000…f6797d6d data: 0xffffffffffffffffff…ffffffff |
| 0x031944…5ff144 | 20 days agoTue, 28 Jul 2026 09:57:21 UTC | Approval | [0] 0x000000000000…e8b7118f [1] 0x000000000000…db8c0904 data: 0xffffffffffffffffff…ffffffff |
| 0x008807…8bed11 | 20 days agoTue, 28 Jul 2026 09:57:20 UTC | Approval | [0] 0x000000000000…e8b7118f [1] 0x000000000000…e1a4f53d data: 0xffffffffffffffffff…ffffffff |
| 0x3332c0…3d677a | 20 days agoTue, 28 Jul 2026 09:57:15 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…e8b7118f data: 0x000000000000000000…4ae4de2f |
| 0x674334…ec6b66 | 23 days agoSat, 25 Jul 2026 07:33:06 UTC | Transfer | [0] 0x000000000000…24c8fce5 [1] 0x000000000000…42123db8 data: 0x000000000000000000…f05848df |
| 0x8671f7…761f5d | 23 days agoSat, 25 Jul 2026 07:23:31 UTC | Approval | [0] 0x000000000000…24c8fce5 [1] 0x000000000000…72c22734 data: 0xffffffffffffffffff…ffffffff |
| 0x76e3eb…dcb0e9 | 24 days agoFri, 24 Jul 2026 21:16:41 UTC | Transfer | [0] 0x000000000000…69828291 [1] 0x000000000000…2a3460d0 data: 0x000000000000000000…4c1a917d |
| 0x76e3eb…dcb0e9 | 24 days agoFri, 24 Jul 2026 21:16:41 UTC | Transfer | [0] 0x000000000000…69828291 [1] 0x000000000000…af83e43c data: 0x000000000000000000…acef1d60 |
| 0x76e3eb…dcb0e9 | 24 days agoFri, 24 Jul 2026 21:16:41 UTC | Transfer | [0] 0x000000000000…42123db8 [1] 0x000000000000…69828291 data: 0x000000000000000000…f909aedd |
| 0xa6d463…771f57 | 24 days agoFri, 24 Jul 2026 21:15:50 UTC | Approval | [0] 0x000000000000…55877c58 [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…b78b7e6c |
| 0x8a6a1b…479713 | 24 days agoFri, 24 Jul 2026 21:14:56 UTC | Transfer | [0] 0x000000000000…55877c58 [1] 0x000000000000…42123db8 data: 0x000000000000000000…b78b7e6c |
| 0x4e6b6c…5060ab | 24 days agoFri, 24 Jul 2026 21:14:52 UTC | Approval | [0] 0x000000000000…55877c58 [1] 0x000000000000…3ac78ba3 data: 0xffffffffffffffffff…ffffffff |
| 0x8897ad…275643 | 24 days agoFri, 24 Jul 2026 21:13:02 UTC | Transfer | [0] 0x000000000000…a00470f2 [1] 0x000000000000…42123db8 data: 0x000000000000000000…d7b320ef |
| 0xa0164d…fa761b | 24 days agoFri, 24 Jul 2026 21:13:02 UTC | Approval | [0] 0x000000000000…a00470f2 [1] 0x000000000000…1fcf6f60 data: 0xffffffffffffffffff…ffffffff |
| 0x0e4ba7…8b5b4f | 24 days agoFri, 24 Jul 2026 21:13:00 UTC | Transfer | [0] 0x000000000000…cfb6e075 [1] 0x000000000000…42123db8 data: 0x000000000000000000…acb5e5ea |
| 0x889822…b58643 | 24 days agoFri, 24 Jul 2026 21:13:00 UTC | Transfer | [0] 0x000000000000…cbe2e870 [1] 0x000000000000…42123db8 data: 0x000000000000000000…9f585e48 |
| 0xbc54fa…9c1221 | 24 days agoFri, 24 Jul 2026 21:13:00 UTC | Approval | [0] 0x000000000000…cbe2e870 [1] 0x000000000000…262c40dc data: 0xffffffffffffffffff…ffffffff |
| 0x3c84b5…61fbbb | 24 days agoFri, 24 Jul 2026 21:13:00 UTC | Transfer | [0] 0x000000000000…c92e4505 [1] 0x000000000000…42123db8 data: 0x000000000000000000…59ccdad3 |
| 0x3c886e…e940ff | 24 days agoFri, 24 Jul 2026 21:13:00 UTC | Approval | [0] 0x000000000000…c92e4505 [1] 0x000000000000…262c40dc data: 0xffffffffffffffffff…ffffffff |
| 0x761dec…1a71a4 | 24 days agoFri, 24 Jul 2026 21:13:00 UTC | Transfer | [0] 0x000000000000…71ee6c57 [1] 0x000000000000…42123db8 data: 0x000000000000000000…059658c2 |
| 0x09036a…5f3552 | 24 days agoFri, 24 Jul 2026 21:13:00 UTC | Approval | [0] 0x000000000000…71ee6c57 [1] 0x000000000000…262c40dc data: 0xffffffffffffffffff…ffffffff |
| 0x9fdbc9…eff92b | 24 days agoFri, 24 Jul 2026 21:13:00 UTC | Approval | [0] 0x000000000000…cfb6e075 [1] 0x000000000000…262c40dc data: 0xffffffffffffffffff…ffffffff |
| 0x58e0df…1cda65 | 24 days agoFri, 24 Jul 2026 21:12:54 UTC | Transfer | [0] 0x000000000000…5de42b0f [1] 0x000000000000…42123db8 data: 0x000000000000000000…59e49607 |
| Block | Age | Parent Transaction Hash | Type | Method | From | To | Value | |
|---|---|---|---|---|---|---|---|---|
| 18,461,709 | 24 days agoFri, 24 Jul 2026 21:10:57 UTC | 0xfb8731…031d4c | CREATE2 | createToken | 0x3364…8291 | IN | 0x42e5…a9ee | 0 ETH |