// SPDX-License-Identifier: MIT
pragma solidity ^0.8.26;
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {IUniswapV3FactoryLike, IUniswapV3PoolImmutablesLike} from "./interfaces/ILaunchpad.sol";
/**
* @title PonsLauncherToken
* @notice Fixed-supply ERC-20 deployed by PonsLaunchFactory for a V3 launch.
* Launch protections only apply to buys from the canonical pool during the
* configured restriction window. Afterward the token behaves as a plain ERC-20.
*/
contract PonsLauncherToken is ERC20 {
struct Socials {
string twitter;
string telegram;
string discord;
string website;
string farcaster;
}
error LaunchBlockBuyBlocked(address recipient);
error MaxWalletExceeded(address account, uint256 balance, uint256 limit);
error MaxTxExceeded(address recipient, uint256 attempted, uint256 limit);
error NotLaunchFactory();
error ZeroAddress();
address public immutable deployer;
address public immutable launchFactory;
address public immutable dexFactory;
address public immutable positionManager;
address public immutable pairToken;
uint24 public immutable poolFee;
uint256 public immutable launchBlock;
uint256 public immutable restrictionBlocks;
uint256 public immutable restrictionEndBlock;
uint16 public immutable maxWalletBps;
uint16 public immutable maxTxBps;
string public logo;
string public description;
Socials private _socials;
address private _initialBuyRecipient;
mapping(address recipient => uint256 amount) private _restrictedPoolBuys;
/**
* @notice Creates a launch token and mints its entire supply to the factory.
*/
constructor(
string memory name_,
string memory symbol_,
string memory logo_,
string memory description_,
Socials memory socials_,
address deployer_,
address dexFactory_,
address positionManager_,
address pairToken_,
uint24 poolFee_,
uint256 supply_,
uint16 maxWalletBps_,
uint16 maxTxBps_,
uint32 restrictionBlocks_
) ERC20(name_, symbol_) {
if (
deployer_ == address(0) || dexFactory_ == address(0) || positionManager_ == address(0)
|| pairToken_ == address(0)
) {
revert ZeroAddress();
}
deployer = deployer_;
launchFactory = msg.sender;
dexFactory = dexFactory_;
positionManager = positionManager_;
pairToken = pairToken_;
poolFee = poolFee_;
launchBlock = block.number;
restrictionBlocks = restrictionBlocks_;
restrictionEndBlock = block.number + restrictionBlocks_;
maxWalletBps = maxWalletBps_;
maxTxBps = maxTxBps_;
logo = logo_;
description = description_;
_socials = socials_;
_mint(msg.sender, supply_);
}
/**
* @notice Returns the canonical V3 pool once the factory has created it.
*/
function liquidityPool() public view returns (address) {
return IUniswapV3FactoryLike(dexFactory).getPool(address(this), pairToken, poolFee);
}
/**
* @notice Returns the launch token's five social metadata fields.
*/
function socials()
external
view
returns (
string memory twitter,
string memory telegram,
string memory discord,
string memory website,
string memory farcaster
)
{
Socials memory values = _socials;
return (values.twitter, values.telegram, values.discord, values.website, values.farcaster);
}
/**
* @notice Returns creator and metadata in the launcher-compatible tuple.
*/
function getTokenInfo()
external
view
returns (
address tokenDeployer,
string memory tokenLogo,
string memory tokenDescription,
Socials memory tokenSocials
)
{
return (deployer, logo, description, _socials);
}
/**
* @notice Maximum recipient balance during the restricted launch window.
*/
function maxWalletLimit() public view returns (uint256) {
return (totalSupply() * maxWalletBps) / 10_000;
}
/**
* @notice Compatibility alias for maxWalletLimit.
*/
function maxWalletAmount() external view returns (uint256) {
return maxWalletLimit();
}
/**
* @notice Base cumulative pool-buy limit during the restricted window.
*/
function maxTxLimit() public view returns (uint256) {
return (totalSupply() * maxTxBps) / 10_000;
}
/**
* @notice Compatibility alias for maxTxLimit.
*/
function maxTxAmount() external view returns (uint256) {
return maxTxLimit();
}
/**
* @notice Opens or closes the one-call exemption used by the factory's atomic initial buy.
*/
function setInitialBuyRecipient(address recipient) external {
if (msg.sender != launchFactory) revert NotLaunchFactory();
_initialBuyRecipient = recipient;
}
/**
* @dev Applies the observed launch restrictions only to pool-to-user buys.
* The factory opens a narrow recipient exemption only while its atomic
* initial buy is executing.
*/
function _update(address from, address to, uint256 value) internal override {
if (from != address(0) && to != address(0) && block.number <= restrictionEndBlock) {
bool isRestrictedBuy = _isPairPool(from);
if (!isRestrictedBuy) {
super._update(from, to, value);
return;
}
bool isAtomicLaunchBuy =
block.number == launchBlock && _initialBuyRecipient != address(0) && to == _initialBuyRecipient;
if (!isAtomicLaunchBuy && block.number == launchBlock) {
revert LaunchBlockBuyBlocked(to);
}
if (!isAtomicLaunchBuy) {
uint256 walletLimit = maxWalletLimit();
uint256 resultingBalance = balanceOf(to) + value;
if (resultingBalance > walletLimit) {
revert MaxWalletExceeded(to, resultingBalance, walletLimit);
}
uint256 cumulative = _restrictedPoolBuys[to] + value;
uint256 cumulativeLimit = maxTxLimit();
if (cumulative > cumulativeLimit) {
revert MaxTxExceeded(to, cumulative, cumulativeLimit);
}
_restrictedPoolBuys[to] = cumulative;
}
}
super._update(from, to, value);
}
/**
* @notice Identifies any V3 pool registered by the configured factory for
* this token and its paired asset, regardless of fee tier.
*/
function _isPairPool(address candidate) private view returns (bool) {
address canonicalPool = liquidityPool();
if (candidate == canonicalPool && canonicalPool != address(0)) return true;
if (candidate.code.length == 0) return false;
(bool feeRead, bytes memory feeData) =
candidate.staticcall(abi.encodeCall(IUniswapV3PoolImmutablesLike.fee, ()));
if (!feeRead || feeData.length < 32) return false;
uint24 candidateFee = abi.decode(feeData, (uint24));
return IUniswapV3FactoryLike(dexFactory).getPool(address(this), pairToken, candidateFee) == candidate;
}
}[
{
"type": "constructor",
"inputs": [
{
"name": "name_",
"type": "string",
"internalType": "string"
},
{
"name": "symbol_",
"type": "string",
"internalType": "string"
},
{
"name": "logo_",
"type": "string",
"internalType": "string"
},
{
"name": "description_",
"type": "string",
"internalType": "string"
},
{
"name": "socials_",
"type": "tuple",
"components": [
{
"name": "twitter",
"type": "string",
"internalType": "string"
},
{
"name": "telegram",
"type": "string",
"internalType": "string"
},
{
"name": "discord",
"type": "string",
"internalType": "string"
},
{
"name": "website",
"type": "string",
"internalType": "string"
},
{
"name": "farcaster",
"type": "string",
"internalType": "string"
}
],
"internalType": "struct PonsLauncherToken.Socials"
},
{
"name": "deployer_",
"type": "address",
"internalType": "address"
},
{
"name": "dexFactory_",
"type": "address",
"internalType": "address"
},
{
"name": "positionManager_",
"type": "address",
"internalType": "address"
},
{
"name": "pairToken_",
"type": "address",
"internalType": "address"
},
{
"name": "poolFee_",
"type": "uint24",
"internalType": "uint24"
},
{
"name": "supply_",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "maxWalletBps_",
"type": "uint16",
"internalType": "uint16"
},
{
"name": "maxTxBps_",
"type": "uint16",
"internalType": "uint16"
},
{
"name": "restrictionBlocks_",
"type": "uint32",
"internalType": "uint32"
}
],
"stateMutability": "nonpayable"
},
{
"name": "ERC20InsufficientAllowance",
"type": "error",
"inputs": [
{
"name": "spender",
"type": "address",
"internalType": "address"
},
{
"name": "allowance",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "needed",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "ERC20InsufficientBalance",
"type": "error",
"inputs": [
{
"name": "sender",
"type": "address",
"internalType": "address"
},
{
"name": "balance",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "needed",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "ERC20InvalidApprover",
"type": "error",
"inputs": [
{
"name": "approver",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC20InvalidReceiver",
"type": "error",
"inputs": [
{
"name": "receiver",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC20InvalidSender",
"type": "error",
"inputs": [
{
"name": "sender",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC20InvalidSpender",
"type": "error",
"inputs": [
{
"name": "spender",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "LaunchBlockBuyBlocked",
"type": "error",
"inputs": [
{
"name": "recipient",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "MaxTxExceeded",
"type": "error",
"inputs": [
{
"name": "recipient",
"type": "address",
"internalType": "address"
},
{
"name": "attempted",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "limit",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "MaxWalletExceeded",
"type": "error",
"inputs": [
{
"name": "account",
"type": "address",
"internalType": "address"
},
{
"name": "balance",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "limit",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "NotLaunchFactory",
"type": "error",
"inputs": []
},
{
"name": "ZeroAddress",
"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": "approve",
"type": "function",
"inputs": [
{
"name": "spender",
"type": "address",
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "nonpayable"
},
{
"name": "balanceOf",
"type": "function",
"inputs": [
{
"name": "account",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "decimals",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint8",
"internalType": "uint8"
}
],
"stateMutability": "view"
},
{
"name": "deployer",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "description",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "dexFactory",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "getTokenInfo",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "tokenDeployer",
"type": "address",
"internalType": "address"
},
{
"name": "tokenLogo",
"type": "string",
"internalType": "string"
},
{
"name": "tokenDescription",
"type": "string",
"internalType": "string"
},
{
"name": "tokenSocials",
"type": "tuple",
"components": [
{
"name": "twitter",
"type": "string",
"internalType": "string"
},
{
"name": "telegram",
"type": "string",
"internalType": "string"
},
{
"name": "discord",
"type": "string",
"internalType": "string"
},
{
"name": "website",
"type": "string",
"internalType": "string"
},
{
"name": "farcaster",
"type": "string",
"internalType": "string"
}
],
"internalType": "struct PonsLauncherToken.Socials"
}
],
"stateMutability": "view"
},
{
"name": "launchBlock",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "launchFactory",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "liquidityPool",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "logo",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "maxTxAmount",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "maxTxBps",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint16",
"internalType": "uint16"
}
],
"stateMutability": "view"
},
{
"name": "maxTxLimit",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "maxWalletAmount",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "maxWalletBps",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint16",
"internalType": "uint16"
}
],
"stateMutability": "view"
},
{
"name": "maxWalletLimit",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "name",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "pairToken",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "poolFee",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint24",
"internalType": "uint24"
}
],
"stateMutability": "view"
},
{
"name": "positionManager",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "restrictionBlocks",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "restrictionEndBlock",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "setInitialBuyRecipient",
"type": "function",
"inputs": [
{
"name": "recipient",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "socials",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "twitter",
"type": "string",
"internalType": "string"
},
{
"name": "telegram",
"type": "string",
"internalType": "string"
},
{
"name": "discord",
"type": "string",
"internalType": "string"
},
{
"name": "website",
"type": "string",
"internalType": "string"
},
{
"name": "farcaster",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "symbol",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "totalSupply",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "transfer",
"type": "function",
"inputs": [
{
"name": "to",
"type": "address",
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "nonpayable"
},
{
"name": "transferFrom",
"type": "function",
"inputs": [
{
"name": "from",
"type": "address",
"internalType": "address"
},
{
"name": "to",
"type": "address",
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "nonpayable"
}
]0x60806040526004361015610011575f80fd5b5f3560e01c806306fdde0314610a095780630861ac61146109cf578063089fe6aa14610990578063095ea7b31461090e57806312f16a07146108d057806318160ddd146108b357806323b872dd146107d3578063313ce567146107b85780633de35b7914610774578063536dac9b1461073057806353cd512a146106a4578063665a11ca1461067857806366a88d961461043957806370a082311461064157806370bffe1b146105c75780637284e416146105ac578063791b98bc146105685780638036d590146105635780638c0b5e221461056357806395d89b411461046f578063a9059cbb1461043e578063aa4bde2814610439578063abb1dc4414610324578063b8d8fbb4146102e0578063baed0765146102a6578063d00efb2f1461026c578063d5f3948814610228578063dd62ed3e146101d8578063fb7f21eb146101a55763ff8ea3e514610163575f80fd5b346101a1575f3660031901126101a157602060405161ffff7f0000000000000000000000000000000000000000000000000000000000002710168152f35b5f80fd5b346101a1575f3660031901126101a1576101d46101c0610c56565b604051918291602083526020830190610ac4565b0390f35b346101a15760403660031901126101a1576101f1610ae8565b6101f9610afe565b6001600160a01b039182165f908152600160209081526040808320949093168252928352819020549051908152f35b346101a1575f3660031901126101a1576040517f0000000000000000000000006f51aa78119c98bf5de1a04ca14d8077e601361f6001600160a01b03168152602090f35b346101a1575f3660031901126101a15760206040517f00000000000000000000000000000000000000000000000000000000018934348152f35b346101a1575f3660031901126101a15760206040517f00000000000000000000000000000000000000000000000000000000000000008152f35b346101a1575f3660031901126101a1576040517f0000000000000000000000001f7d7550b1b028f7571e69a784071f0205fd2efa6001600160a01b03168152602090f35b346101a1575f3660031901126101a1576060608060405161034481610b36565b828152826020820152826040820152828082015201526103be610365610c56565b6101d4610370610b88565b6103cc61037b610dd2565b9160405195869560018060a01b037f0000000000000000000000006f51aa78119c98bf5de1a04ca14d8077e601361f168752608060208801526080870190610ac4565b908582036040870152610ac4565b838103606085015260806104286104166104046103f2865160a0875260a0870190610ac4565b60208701518682036020880152610ac4565b60408601518582036040870152610ac4565b60608501518482036060860152610ac4565b920151906080818403910152610ac4565b610b14565b346101a15760403660031901126101a15761046461045a610ae8565b6024359033610fc7565b602060405160018152f35b346101a1575f3660031901126101a1576040515f6004548060011c90600181168015610559575b6020831081146105455782855290811561052157506001146104c3575b6101d4836101c081850382610b66565b60045f9081527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b939250905b808210610507575090915081016020016101c06104b3565b9192600181602092548385880101520191019092916104ef565b60ff191660208086019190915291151560051b840190910191506101c090506104b3565b634e487b7160e01b5f52602260045260245ffd5b91607f1691610496565b610db8565b346101a1575f3660031901126101a1576040517f00000000000000000000000073991a25c818bf1f1128deaab1492d45638de0d36001600160a01b03168152602090f35b346101a1575f3660031901126101a1576101d46101c0610b88565b346101a15760203660031901126101a1576105e0610ae8565b7f00000000000000000000000021e9d8f1d38694d0adef09eff539af3cdd7dcf7f6001600160a01b0316330361063257600c80546001600160a01b0319166001600160a01b0392909216919091179055005b639f5f2caf60e01b5f5260045ffd5b346101a15760203660031901126101a1576001600160a01b03610662610ae8565b165f525f602052602060405f2054604051908152f35b346101a1575f3660031901126101a1576020610692610e49565b6040516001600160a01b039091168152f35b346101a1575f3660031901126101a1576106f86106bf610dd2565b6101d481519161072260208201519161071460408201516107066080606085015194015195604051998a9960a08b5260a08b0190610ac4565b9089820360208b0152610ac4565b908782036040890152610ac4565b908582036060870152610ac4565b908382036080850152610ac4565b346101a1575f3660031901126101a1576040517f00000000000000000000000021e9d8f1d38694d0adef09eff539af3cdd7dcf7f6001600160a01b03168152602090f35b346101a1575f3660031901126101a1576040517f0000000000000000000000000bd7d308f8e1639fab988df18a8011f41eacad736001600160a01b03168152602090f35b346101a1575f3660031901126101a157602060405160128152f35b346101a15760603660031901126101a1576107ec610ae8565b6107f4610afe565b6001600160a01b0382165f818152600160208181526040808420338552909152909120549193604435939290918101610833575b506104649350610fc7565b83811061089857841561088557331561087257610464945f52600160205260405f2060018060a01b0333165f526020528360405f209103905584610828565b634a1406b160e11b5f525f60045260245ffd5b63e602df0560e01b5f525f60045260245ffd5b8390637dc7a0d960e11b5f523360045260245260445260645ffd5b346101a1575f3660031901126101a1576020600254604051908152f35b346101a1575f3660031901126101a157602060405161ffff7f0000000000000000000000000000000000000000000000000000000000002710168152f35b346101a15760403660031901126101a157610927610ae8565b602435903315610885576001600160a01b031690811561087257335f52600160205260405f20825f526020528060405f20556040519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560203392a3602060405160018152f35b346101a1575f3660031901126101a157602060405162ffffff7f0000000000000000000000000000000000000000000000000000000000000064168152f35b346101a1575f3660031901126101a15760206040517f00000000000000000000000000000000000000000000000000000000018934348152f35b346101a1575f3660031901126101a1576040515f6003548060011c90600181168015610aba575b602083108114610545578285529081156105215750600114610a5c576101d4836101c081850382610b66565b60035f9081527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b939250905b808210610aa0575090915081016020016101c06104b3565b919260018160209254838588010152019101909291610a88565b91607f1691610a30565b805180835260209291819084018484015e5f828201840152601f01601f1916010190565b600435906001600160a01b03821682036101a157565b602435906001600160a01b03821682036101a157565b346101a1575f3660031901126101a1576020610b2e610f5b565b604051908152f35b60a0810190811067ffffffffffffffff821117610b5257604052565b634e487b7160e01b5f52604160045260245ffd5b90601f8019910116810190811067ffffffffffffffff821117610b5257604052565b604051905f6006548060011c9160018216918215610c4c575b602084108314610545578386528592908115610c2d5750600114610bce575b610bcc92500383610b66565b565b5060065f90815290917ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f5b818310610c11575050906020610bcc92820101610bc0565b6020919350806001915483858901015201910190918492610bf9565b60209250610bcc94915060ff191682840152151560051b820101610bc0565b92607f1692610ba1565b604051905f6005548060011c9160018216918215610cf8575b602084108314610545578386528592908115610c2d5750600114610c9957610bcc92500383610b66565b5060055f90815290917f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db05b818310610cdc575050906020610bcc92820101610bc0565b6020919350806001915483858901015201910190918492610cc4565b92607f1692610c6f565b90604051915f8154908160011c9260018316928315610dae575b602085108414610545578487528693908115610d8c5750600114610d48575b50610bcc92500383610b66565b90505f9291925260205f20905f915b818310610d70575050906020610bcc928201015f610d3b565b6020919350806001915483858901015201910190918492610d57565b905060209250610bcc94915060ff191682840152151560051b8201015f610d3b565b93607f1693610d1c565b346101a1575f3660031901126101a1576020610b2e610f93565b60405190610ddf82610b36565b81610dea6007610d02565b8152610df66008610d02565b6020820152610e056009610d02565b6040820152610e14600a610d02565b60608201526080610e25600b610d02565b910152565b908160209103126101a157516001600160a01b03811681036101a15790565b604051630b4c774160e11b81523060048201526001600160a01b037f0000000000000000000000000bd7d308f8e1639fab988df18a8011f41eacad7316602482015262ffffff7f0000000000000000000000000000000000000000000000000000000000000064166044820152602081806064810103817f0000000000000000000000001f7d7550b1b028f7571e69a784071f0205fd2efa6001600160a01b03165afa908115610f29575f91610efd575090565b610f1f915060203d602011610f22575b610f178183610b66565b810190610e2a565b90565b503d610f0d565b6040513d5f823e3d90fd5b81810292918115918404141715610f4757565b634e487b7160e01b5f52601160045260245ffd5b612710610f8f60025461ffff7f00000000000000000000000000000000000000000000000000000000000027101690610f34565b0490565b612710610f8f60025461ffff7f00000000000000000000000000000000000000000000000000000000000027101690610f34565b91906001600160a01b03831615611003576001600160a01b03811615610ff057610bcc92611023565b63ec442f0560e01b5f525f60045260245ffd5b634b637e8f60e11b5f525f60045260245ffd5b91908201809211610f4757565b9291906001600160a01b0384161515806111bd575b80611193575b61104d575b610bcc9293611375565b611056846111cf565b1561104357437f000000000000000000000000000000000000000000000000000000000189343414808061117f575b80611168575b1580918192611160575b5061113f5715611043576110a7610f5b565b9360018060a01b03821694855f525f6020526110c78460405f2054611016565b818111611126575050845f52600d6020526110e68360405f2054611016565b6110ee610f93565b9586821161110b575f908152600d60205260409020559350611043565b8692506334e5f8b760e21b5f5260045260245260445260645ffd5b866304a43e8b60e51b5f5260045260245260445260645ffd5b506385234f9760e01b5f9081526001600160a01b0391909116600452602490fd5b90505f611095565b50600c546001600160a01b0383811691161461108b565b50600c546001600160a01b03161515611085565b507f000000000000000000000000000000000000000000000000000000000189343443111561103e565b506001600160a01b0381161515611038565b6001600160a01b036111df610e49565b6001600160a01b038316929116828114908161136b575b5061136457803b1561134b575f8091604051602081019063ddca3f4360e01b825260048152611226602482610b66565b51915afa3d1561135c573d9067ffffffffffffffff8211610b525760405191611259601f8201601f191660200184610b66565b82523d5f602084013e5b158015611351575b61134b576020818051810103126101a1576020015162ffffff811681036101a157604051630b4c774160e11b81523060048201526001600160a01b037f0000000000000000000000000bd7d308f8e1639fab988df18a8011f41eacad7316602482015262ffffff9091166044820152602081806064810103817f0000000000000000000000001f7d7550b1b028f7571e69a784071f0205fd2efa6001600160a01b03165afa908115610f29575f9161132c575b506001600160a01b03161490565b611345915060203d602011610f2257610f178183610b66565b5f61131e565b50505f90565b50602081511061126b565b606090611263565b5050600190565b905015155f6111f6565b6001600160a01b031690816113ee5760207fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef916113b485600254611016565b6002555b6001600160a01b031693846113d95780600254036002555b604051908152a3565b845f525f825260405f208181540190556113d0565b815f525f60205260405f2054838110611438577fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9184602092855f525f84520360405f20556113b8565b91905063391434e360e21b5f5260045260245260445260645ffdfea2646970667358221220100bed09c5e0e6dcb53e4099c97a5dc79d9e9994ebff0719325c8ad9795cb55864736f6c634300081e0033
| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| no token holdings | ||||
| Transaction Hash | Method | Block | Age | From | To | Type | Item | ||
|---|---|---|---|---|---|---|---|---|---|
| no NFT 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 | Amount | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| no token transfers for this address yet | |||||||||
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0xcce339…456d88 | Approve | 38,416,504 | 19 hrs agoMon, 17 Aug 2026 00:45:32 UTC | 0x0099…9783 | IN | MUNDO | $0.000 ETH | 0.00000093 | |
| 0x19ae94…8efe4a | Approve | 38,389,305 | 19 hrs agoMon, 17 Aug 2026 00:00:03 UTC | 0x5807…f196 | IN | MUNDO | $0.000 ETH | 0.00000092 | |
| 0xa8b9a3…380158 | Approve | 38,220,103 | 1 day agoSun, 16 Aug 2026 19:17:11 UTC | 0xa6ad…9e4f | IN | MUNDO | $0.000 ETH | 0.00000095 | |
| 0x0f1954…6ef839 | Approve | 38,145,866 | 1 day agoSun, 16 Aug 2026 17:13:03 UTC | 0x423e…23aa | IN | MUNDO | $0.000 ETH | 0.00000093 | |
| 0x5b8de6…28ad4a | Approve | 38,144,199 | 1 day agoSun, 16 Aug 2026 17:10:15 UTC | 0x423e…23aa | IN | MUNDO | $0.000 ETH | 0.00000093 | |
| 0x3dd829…adb827 | Approve | 38,143,720 | 1 day agoSun, 16 Aug 2026 17:09:27 UTC | 0x989e…00e1 | IN | MUNDO | $0.000 ETH | 0.00000093 | |
| 0x7ba457…07060a | Approve | 38,143,566 | 1 day agoSun, 16 Aug 2026 17:09:12 UTC | 0xd795…201a | IN | MUNDO | $0.000 ETH | 0.00000092 | |
| 0xeb409f…e34bb7 | Approve | 38,143,405 | 1 day agoSun, 16 Aug 2026 17:08:55 UTC | 0x6bae…32ef | IN | MUNDO | $0.000 ETH | 0.00000094 | |
| 0xa05ded…d200d2 | Approve | 38,143,105 | 1 day agoSun, 16 Aug 2026 17:08:25 UTC | 0xc728…be5b | IN | MUNDO | $0.000 ETH | 0.00000092 |
| Block | Age | Parent Transaction Hash | Type | Method | From | To | Value | |
|---|---|---|---|---|---|---|---|---|
| 38,142,307 | 1 day agoSun, 16 Aug 2026 17:07:06 UTC | 0x32cde3…89093f | CREATE2 | 0xc9bb7de5 | 0x21e9…cf7f | IN | 0x4cc3…2c1c | 0 ETH |
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0x4527b4…f9b4a4 | 19 hrs agoMon, 17 Aug 2026 00:47:11 UTC | Transfer | [0] 0x000000000000…638de0d3 [1] 0x000000000000…e601361f data: 0x000000000000000000…d22e4317 |
| 0x4527b4…f9b4a4 | 19 hrs agoMon, 17 Aug 2026 00:47:11 UTC | Transfer | [0] 0x000000000000…f1fcd605 [1] 0x000000000000…638de0d3 data: 0x000000000000000000…d22e4317 |
| 0xdf2c41…0bdb8b | 19 hrs agoMon, 17 Aug 2026 00:46:12 UTC | Transfer | [0] 0x000000000000…b3f9201a [1] 0x000000000000…f1fcd605 data: 0x000000000000000000…b0000000 |
| 0xd2cdda…8af6a4 | 19 hrs agoMon, 17 Aug 2026 00:46:03 UTC | Transfer | [0] 0x000000000000…92c732ef [1] 0x000000000000…f1fcd605 data: 0x000000000000000000…c0000000 |
| 0x68cc69…35e3fa | 19 hrs agoMon, 17 Aug 2026 00:45:55 UTC | Transfer | [0] 0x000000000000…08d6be5b [1] 0x000000000000…f1fcd605 data: 0x000000000000000000…18000000 |
| 0xecd764…ee3c1e | 19 hrs agoMon, 17 Aug 2026 00:45:44 UTC | Transfer | [0] 0x000000000000…09e500e1 [1] 0x000000000000…f1fcd605 data: 0x000000000000000000…00000000 |
| 0x1bc108…0ffae5 | 19 hrs agoMon, 17 Aug 2026 00:45:33 UTC | Transfer | [0] 0x000000000000…1b1d23aa [1] 0x000000000000…f1fcd605 data: 0x000000000000000000…00000000 |
| 0xc02799…b23aa4 | 19 hrs agoMon, 17 Aug 2026 00:45:32 UTC | Approval | [0] 0x000000000000…19c7028d [1] 0x000000000000…e5d8eb13 data: 0x000000000000000000…00000000 |
| 0xc02799…b23aa4 | 19 hrs agoMon, 17 Aug 2026 00:45:32 UTC | Transfer | [0] 0x000000000000…1acdee73 [1] 0x000000000000…f1fcd605 data: 0x000000000000000000…cfa9fde1 |
| 0xc02799…b23aa4 | 19 hrs agoMon, 17 Aug 2026 00:45:32 UTC | Transfer | [0] 0x000000000000…19c7028d [1] 0x000000000000…1acdee73 data: 0x000000000000000000…cfa9fde1 |
| 0xc02799…b23aa4 | 19 hrs agoMon, 17 Aug 2026 00:45:32 UTC | Approval | [0] 0x000000000000…19c7028d [1] 0x000000000000…e5d8eb13 data: 0x000000000000000000…cfa9fde1 |
| 0xc02799…b23aa4 | 19 hrs agoMon, 17 Aug 2026 00:45:32 UTC | Transfer | [0] 0x000000000000…7b589783 [1] 0x000000000000…19c7028d data: 0x000000000000000000…cfa9fde1 |
| 0xcce339…456d88 | 19 hrs agoMon, 17 Aug 2026 00:45:32 UTC | Approval | [0] 0x000000000000…7b589783 [1] 0x000000000000…19c7028d data: 0xffffffffffffffffff…ffffffff |
| 0x839b02…da3932 | 19 hrs agoMon, 17 Aug 2026 00:44:24 UTC | Transfer | [0] 0x000000000000…08d6be5b [1] 0x000000000000…f1fcd605 data: 0x000000000000000000…28000000 |
| 0xc7aa2f…61a6fb | 19 hrs agoMon, 17 Aug 2026 00:44:17 UTC | Transfer | [0] 0x000000000000…1b1d23aa [1] 0x000000000000…f1fcd605 data: 0x000000000000000000…00000000 |
| 0xa7af68…7c8a90 | 19 hrs agoMon, 17 Aug 2026 00:44:07 UTC | Transfer | [0] 0x000000000000…92c732ef [1] 0x000000000000…f1fcd605 data: 0x000000000000000000…b0000000 |
| 0x3aa812…5e1a0c | 19 hrs agoMon, 17 Aug 2026 00:43:58 UTC | Transfer | [0] 0x000000000000…b3f9201a [1] 0x000000000000…f1fcd605 data: 0x000000000000000000…90000000 |
| 0x5fd857…5fbea6 | 19 hrs agoMon, 17 Aug 2026 00:43:46 UTC | Transfer | [0] 0x000000000000…09e500e1 [1] 0x000000000000…f1fcd605 data: 0x000000000000000000…80000000 |
| 0xe3453f…831122 | 19 hrs agoMon, 17 Aug 2026 00:40:27 UTC | Transfer | [0] 0x000000000000…09e500e1 [1] 0x000000000000…f1fcd605 data: 0x000000000000000000…60000000 |
| 0x6ca417…4bf9b4 | 19 hrs agoMon, 17 Aug 2026 00:32:33 UTC | Transfer | [0] 0x000000000000…08d6be5b [1] 0x000000000000…f1fcd605 data: 0x000000000000000000…7c000000 |
| 0x44a2fb…42bfe7 | 19 hrs agoMon, 17 Aug 2026 00:28:01 UTC | Transfer | [0] 0x000000000000…f1fcd605 [1] 0x000000000000…09e500e1 data: 0x000000000000000000…9fc96b69 |
| 0xfb20c8…5175db | 19 hrs agoMon, 17 Aug 2026 00:20:05 UTC | Transfer | [0] 0x000000000000…f1fcd605 [1] 0x000000000000…1b1d23aa data: 0x000000000000000000…aa74a08b |
| 0x793392…3ffea9 | 19 hrs agoMon, 17 Aug 2026 00:11:42 UTC | Transfer | [0] 0x000000000000…1b1d23aa [1] 0x000000000000…f1fcd605 data: 0x000000000000000000…80000000 |
| 0xa58e02…47d9db | 19 hrs agoMon, 17 Aug 2026 00:03:16 UTC | Transfer | [0] 0x000000000000…f1fcd605 [1] 0x000000000000…92c732ef data: 0x000000000000000000…ec9547cc |
| 0xd708d8…493feb | 19 hrs agoMon, 17 Aug 2026 00:00:07 UTC | Transfer | [0] 0x000000000000…36a2f196 [1] 0x000000000000…f1fcd605 data: 0x000000000000000000…5dc9655b |