// SPDX-License-Identifier: MIT
pragma solidity ^0.8.26;
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
/// @notice ERC20 launched by the LaunchFactory. Enforces anti-snipe max-wallet /
/// max-tx limits until `restrictionsEndBlock`, after which it behaves as a plain ERC20.
contract LaunchToken is ERC20 {
error NotFactory();
error MaxWalletExceeded();
error MaxTxExceeded();
address public immutable factory;
uint256 public immutable restrictionsEndBlock;
uint256 public immutable maxWalletAmount; // 0 = no limit
uint256 public immutable maxTxAmount; // 0 = no limit
/// @notice Addresses exempt from restrictions (pool, locker, position manager, router, factory).
mapping(address => bool) public restrictionExempt;
constructor(
string memory name_,
string memory symbol_,
uint256 supply_,
uint16 maxWalletBps_,
uint16 maxTxBps_,
uint256 restrictionsEndBlock_
) ERC20(name_, symbol_) {
factory = msg.sender;
restrictionsEndBlock = restrictionsEndBlock_;
maxWalletAmount = maxWalletBps_ >= 10_000 ? 0 : (supply_ * maxWalletBps_) / 10_000;
maxTxAmount = maxTxBps_ >= 10_000 ? 0 : (supply_ * maxTxBps_) / 10_000;
restrictionExempt[msg.sender] = true;
_mint(msg.sender, supply_);
}
/// @notice Factory marks protocol addresses as exempt during launch (one-way).
function setRestrictionExempt(address account) external {
if (msg.sender != factory) revert NotFactory();
restrictionExempt[account] = true;
}
function restrictionsActive() public view returns (bool) {
return block.number < restrictionsEndBlock;
}
function _update(address from, address to, uint256 value) internal override {
if (from != address(0) && to != address(0) && restrictionsActive()) {
if (maxTxAmount != 0 && value > maxTxAmount && !restrictionExempt[from] && !restrictionExempt[to]) {
revert MaxTxExceeded();
}
if (maxWalletAmount != 0 && !restrictionExempt[to] && balanceOf(to) + value > maxWalletAmount) {
revert MaxWalletExceeded();
}
}
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": "maxWalletBps_",
"type": "uint16",
"internalType": "uint16"
},
{
"name": "maxTxBps_",
"type": "uint16",
"internalType": "uint16"
},
{
"name": "restrictionsEndBlock_",
"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": "MaxTxExceeded",
"type": "error",
"inputs": []
},
{
"name": "MaxWalletExceeded",
"type": "error",
"inputs": []
},
{
"name": "NotFactory",
"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": "factory",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "maxTxAmount",
"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": "name",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "restrictionExempt",
"type": "function",
"inputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "view"
},
{
"name": "restrictionsActive",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "view"
},
{
"name": "restrictionsEndBlock",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "setRestrictionExempt",
"type": "function",
"inputs": [
{
"name": "account",
"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"
}
]0x6080806040526004361015610012575f80fd5b5f3560e01c90816306fdde031461062257508063095ea7b3146105a057806318160ddd14610583578063225a10211461050857806323b872dd146104295780632f982c67146103ef578063313ce567146103d457806370a082311461039d57806374c6fdec146103615780638c0b5e221461032757806394a8cbd4146102ea57806395d89b41146101cf578063a9059cbb1461019e578063aa4bde2814610164578063c45a0155146101205763dd62ed3e146100cc575f80fd5b3461011c57604036600319011261011c576100e561071b565b6100ed610731565b6001600160a01b039182165f908152600160209081526040808320949093168252928352819020549051908152f35b5f80fd5b3461011c575f36600319011261011c576040517f00000000000000000000000052453b4289a6c3a70bb8b4682bcd3d8731267e286001600160a01b03168152602090f35b3461011c575f36600319011261011c5760206040517f000000000000000000000000000000000000000000108b2a2c280290940000008152f35b3461011c57604036600319011261011c576101c46101ba61071b565b6024359033610747565b602060405160018152f35b3461011c575f36600319011261011c576040515f6004548060011c906001811680156102e0575b6020831081146102cc578285529081156102b0575060011461025b575b50819003601f01601f191681019067ffffffffffffffff82118183101761024757610243829182604052826106f1565b0390f35b634e487b7160e01b5f52604160045260245ffd5b905060045f527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5f905b82821061029a57506020915082010182610213565b6001816020925483858801015201910190610285565b90506020925060ff191682840152151560051b82010182610213565b634e487b7160e01b5f52602260045260245ffd5b91607f16916101f6565b3461011c57602036600319011261011c576001600160a01b0361030b61071b565b165f526005602052602060ff60405f2054166040519015158152f35b3461011c575f36600319011261011c5760206040517f00000000000000000000000000000000000000000000000000000000000000008152f35b3461011c575f36600319011261011c5760206040517f000000000000000000000000000000000000000000000000000000000185675043108152f35b3461011c57602036600319011261011c576001600160a01b036103be61071b565b165f525f602052602060405f2054604051908152f35b3461011c575f36600319011261011c57602060405160128152f35b3461011c575f36600319011261011c5760206040517f00000000000000000000000000000000000000000000000000000000018567508152f35b3461011c57606036600319011261011c5761044261071b565b61044a610731565b6001600160a01b0382165f818152600160209081526040808320338452909152902054909260443592915f198110610488575b506101c49350610747565b8381106104ed5784156104da5733156104c7576101c4945f52600160205260405f2060018060a01b0333165f526020528360405f20910390558461047d565b634a1406b160e11b5f525f60045260245ffd5b63e602df0560e01b5f525f60045260245ffd5b8390637dc7a0d960e11b5f523360045260245260445260645ffd5b3461011c57602036600319011261011c5761052161071b565b7f00000000000000000000000052453b4289a6c3a70bb8b4682bcd3d8731267e286001600160a01b03163303610574576001600160a01b03165f908152600560205260409020805460ff19166001179055005b631966391b60e11b5f5260045ffd5b3461011c575f36600319011261011c576020600254604051908152f35b3461011c57604036600319011261011c576105b961071b565b6024359033156104da576001600160a01b03169081156104c757335f52600160205260405f20825f526020528060405f20556040519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560203392a3602060405160018152f35b3461011c575f36600319011261011c575f6003548060011c906001811680156106e7575b6020831081146102cc578285529081156102b057506001146106925750819003601f01601f191681019067ffffffffffffffff82118183101761024757610243829182604052826106f1565b905060035f527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5f905b8282106106d157506020915082010182610213565b60018160209254838588010152019101906106bc565b91607f1691610646565b602060409281835280519182918282860152018484015e5f828201840152601f01601f1916010190565b600435906001600160a01b038216820361011c57565b602435906001600160a01b038216820361011c57565b6001600160a01b031690811561092e576001600160a01b031691821561091b577f00000000000000000000000000000000000000000000000000000000018567504310610806575b815f525f60205260405f20548181106107ed57817fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92602092855f525f84520360405f2055845f525f825260405f20818154019055604051908152a3565b8263391434e360e21b5f5260045260245260445260645ffd5b7f00000000000000000000000000000000000000000000000000000000000000008015159081610911575b50806108fa575b806108e3575b6108d4577f000000000000000000000000000000000000000000108b2a2c2802909400000080151590816108bb575b81610888575b501561078f57632ce93b5960e01b5f5260045ffd5b9050835f525f60205260405f20548281018091116108a757115f610873565b634e487b7160e01b5f52601160045260245ffd5b9050835f52600560205260ff60405f205416159061086d565b63136c002360e21b5f5260045ffd5b50825f52600560205260ff60405f2054161561083e565b50815f52600560205260ff60405f20541615610838565b905081115f610831565b63ec442f0560e01b5f525f60045260245ffd5b634b637e8f60e11b5f525f60045260245ffdfea2646970667358221220d2bb0b6502f25a1e3d745a3451c46d30d0f7f1c6494d2d5afad6bcd69e4c520264736f6c634300081a0033
| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| DIH | 1 | $0.0000102 | $0 |
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0xe6c420…452110 | 8 days agoSun, 09 Aug 2026 14:52:28 UTC | Transfer | [0] 0x000000000000…7e08b72c [1] 0x000000000000…6925a859 data: 0x000000000000000000…31a2459b |
| 0x152eef…f944f1 | 8 days agoSun, 09 Aug 2026 14:52:26 UTC | Approval | [0] 0x000000000000…7e08b72c [1] 0x000000000000…959e5cb2 data: 0xffffffffffffffffff…ffffffff |
| 0xc1a393…2da12e | 16 days agoSat, 01 Aug 2026 09:35:39 UTC | Transfer | [0] 0x000000000000…aa9673d9 [1] 0x000000000000…6925a859 data: 0x000000000000000000…61f150ce |
| 0x97aa11…624f3d | 16 days agoSat, 01 Aug 2026 09:25:54 UTC | Approval | [0] 0x000000000000…aa9673d9 [1] 0x000000000000…959e5cb2 data: 0xffffffffffffffffff…ffffffff |
| 0x10051c…ca1e9f | 16 days agoSat, 01 Aug 2026 08:26:08 UTC | Transfer | [0] 0x000000000000…9fb9a508 [1] 0x000000000000…6925a859 data: 0x000000000000000000…e9348a6b |
| 0x9de315…656802 | 16 days agoSat, 01 Aug 2026 08:17:21 UTC | Approval | [0] 0x000000000000…9fb9a508 [1] 0x000000000000…959e5cb2 data: 0xffffffffffffffffff…ffffffff |
| 0xea3804…3bff4e | 20 days agoTue, 28 Jul 2026 22:35:19 UTC | Approval | [0] 0x000000000000…b9cb1f3c [1] 0x000000000000…018d237c data: 0x000000000000000000…00000000 |
| 0x7cfa15…f797fa | 23 days agoSat, 25 Jul 2026 18:33:23 UTC | Transfer | [0] 0x000000000000…8f26d0f3 [1] 0x000000000000…b59e816e data: 0x000000000000000000…56666028 |
| 0x7acd72…cc5cc7 | 23 days agoSat, 25 Jul 2026 15:22:46 UTC | Transfer | [0] 0x000000000000…c8aebb4f [1] 0x000000000000…6925a859 data: 0x000000000000000000…1f6c4e9a |
| 0x7acd72…cc5cc7 | 23 days agoSat, 25 Jul 2026 15:22:46 UTC | Transfer | [0] 0x000000000000…76b0a337 [1] 0x000000000000…c8aebb4f data: 0x000000000000000000…1f6c4e9a |
| 0x016e28…4b74fd | 23 days agoSat, 25 Jul 2026 15:22:41 UTC | Approval | [0] 0x000000000000…76b0a337 [1] 0x000000000000…f6797d6d data: 0xffffffffffffffffff…ffffffff |
| 0x309ac6…3a365f | 23 days agoSat, 25 Jul 2026 15:22:36 UTC | Approval | [0] 0x000000000000…76b0a337 [1] 0x000000000000…db8c0904 data: 0xffffffffffffffffff…ffffffff |
| 0xc37954…03c4b1 | 23 days agoSat, 25 Jul 2026 15:22:35 UTC | Approval | [0] 0x000000000000…76b0a337 [1] 0x000000000000…e1a4f53d data: 0xffffffffffffffffff…ffffffff |
| 0xfac7d8…26075f | 23 days agoSat, 25 Jul 2026 15:22:34 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…76b0a337 data: 0x000000000000000000…007b400d |
| 0x8a2d7d…9c73ff | 26 days agoWed, 22 Jul 2026 22:06:23 UTC | Transfer | [0] 0x000000000000…fdbf0ec9 [1] 0x000000000000…6925a859 data: 0x000000000000000000…462793fe |
| 0xea85ba…8dae26 | 26 days agoWed, 22 Jul 2026 22:06:23 UTC | Approval | [0] 0x000000000000…fdbf0ec9 [1] 0x000000000000…1fcf6f60 data: 0xffffffffffffffffff…ffffffff |
| 0x6f320a…f3f49f | 26 days agoWed, 22 Jul 2026 22:06:23 UTC | Transfer | [0] 0x000000000000…7b25337b [1] 0x000000000000…6925a859 data: 0x000000000000000000…8d8e134d |
| 0x83a3a2…822017 | 26 days agoWed, 22 Jul 2026 22:06:23 UTC | Transfer | [0] 0x000000000000…6e844939 [1] 0x000000000000…6925a859 data: 0x000000000000000000…2b3141e8 |
| 0x7c2be2…7ad048 | 26 days agoWed, 22 Jul 2026 22:06:23 UTC | Approval | [0] 0x000000000000…6e844939 [1] 0x000000000000…1fcf6f60 data: 0xffffffffffffffffff…ffffffff |
| 0x2c30ca…4df693 | 26 days agoWed, 22 Jul 2026 22:06:23 UTC | Transfer | [0] 0x000000000000…aed5d518 [1] 0x000000000000…6925a859 data: 0x000000000000000000…06a37ff4 |
| 0x307b67…01524f | 26 days agoWed, 22 Jul 2026 22:06:23 UTC | Transfer | [0] 0x000000000000…b545708d [1] 0x000000000000…6925a859 data: 0x000000000000000000…6644925d |
| 0x04a2c1…e0508b | 26 days agoWed, 22 Jul 2026 22:06:23 UTC | Approval | [0] 0x000000000000…7b25337b [1] 0x000000000000…1fcf6f60 data: 0xffffffffffffffffff…ffffffff |
| 0x978163…5125b5 | 26 days agoWed, 22 Jul 2026 22:06:23 UTC | Approval | [0] 0x000000000000…aed5d518 [1] 0x000000000000…1fcf6f60 data: 0xffffffffffffffffff…ffffffff |
| 0xef01e3…0692d9 | 26 days agoWed, 22 Jul 2026 22:06:23 UTC | Approval | [0] 0x000000000000…b545708d [1] 0x000000000000…1fcf6f60 data: 0xffffffffffffffffff…ffffffff |
| 0x366707…4d3746 | 26 days agoWed, 22 Jul 2026 22:06:23 UTC | Transfer | [0] 0x000000000000…29f7187e [1] 0x000000000000…6925a859 data: 0x000000000000000000…0123fabc |
| Type | Age | Block | Details |
|---|---|---|---|
| no cross-chain L1↔L2 transactions for this address | |||
| Transaction Hash | Method | Block | Age | From | To | Amount | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x0492682c…a8ca8a | Transfer | 19,091,584 | 23 days agoSat, 25 Jul 2026 14:45:15 UTC | 0xcaf7…5d11 | IN | 0xcf6b…93a2 | $0.001 DIH |
| 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 ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x152eef…f944f1 | Approve | 32,022,073 | 8 days agoSun, 09 Aug 2026 14:52:26 UTC | 0xcedf…b72c | IN | Garlic Coin | $0.000 ETH | 0.00000123 | |
| 0x97aa11…624f3d | Approve | 24,930,017 | 16 days agoSat, 01 Aug 2026 09:25:54 UTC | 0x28e5…73d9 | IN | Garlic Coin | $0.000 ETH | 0.00000092 | |
| 0x9de315…656802 | Approve | 24,889,049 | 16 days agoSat, 01 Aug 2026 08:17:21 UTC | 0xc1a4…a508 | IN | Garlic Coin | $0.000 ETH | 0.00000092 | |
| 0xea3804…3bff4e | Approve | 21,955,187 | 20 days agoTue, 28 Jul 2026 22:35:19 UTC | 0xee08…1f3c | IN | Garlic Coin | $0.000 ETH | 0.00000066 | |
| 0x016e28…4b74fd | Approve | 19,113,969 | 23 days agoSat, 25 Jul 2026 15:22:41 UTC | 0x413e…a337 | IN | Garlic Coin | $0.000 ETH | 0.00000366 | |
| 0x309ac6…3a365f | Approve | 19,113,920 | 23 days agoSat, 25 Jul 2026 15:22:36 UTC | 0x413e…a337 | IN | Garlic Coin | $0.000 ETH | 0.00000365 | |
| 0xc37954…03c4b1 | Approve | 19,113,913 | 23 days agoSat, 25 Jul 2026 15:22:35 UTC | 0x413e…a337 | IN | Garlic Coin | $0.000 ETH | 0.00000367 | |
| 0x978163…5125b5 | Approve | 16,771,598 | 26 days agoWed, 22 Jul 2026 22:06:23 UTC | 0x2343…d518 | IN | Garlic Coin | $0.000 ETH | 0.00000432 | |
| 0xea85ba…8dae26 | Approve | 16,771,598 | 26 days agoWed, 22 Jul 2026 22:06:23 UTC | 0x12d2…0ec9 | IN | Garlic Coin | $0.000 ETH | 0.00000432 | |
| 0xef01e3…0692d9 | Approve | 16,771,598 | 26 days agoWed, 22 Jul 2026 22:06:23 UTC | 0x3d4a…708d | IN | Garlic Coin | $0.000 ETH | 0.00000432 | |
| 0x7c2be2…7ad048 | Approve | 16,771,598 | 26 days agoWed, 22 Jul 2026 22:06:23 UTC | 0x66ef…4939 | IN | Garlic Coin | $0.000 ETH | 0.00000432 | |
| 0x04a2c1…e0508b | Approve | 16,771,598 | 26 days agoWed, 22 Jul 2026 22:06:23 UTC | 0xe4c0…337b | IN | Garlic Coin | $0.000 ETH | 0.00000432 | |
| 0x571617…83add6 | Approve | 16,771,597 | 26 days agoWed, 22 Jul 2026 22:06:23 UTC | 0x026f…187e | IN | Garlic Coin | $0.000 ETH | 0.00000431 | |
| 0xef4d06…853a0c | Transfer | 12,764,355 | 30 days agoSat, 18 Jul 2026 06:26:43 UTC | 0x34b2…f8b6 | IN | Garlic Coin | $0.000 ETH | 0.00000216 | |
| 0xf9c5b5…823993 | Approve | 11,280,160 | 32 days agoThu, 16 Jul 2026 13:07:07 UTC | 0xf0b8…a981 | IN | Garlic Coin | $0.000 ETH | 0.00000288 | |
| 0xe36413…11f777 | Approve | 10,668,579 | 33 days agoWed, 15 Jul 2026 20:06:21 UTC | 0x509a…4814 | IN | Garlic Coin | $0.000 ETH | 0.00000161 | |
| 0x39771c…725daf | Approve | 9,034,302 | 35 days agoMon, 13 Jul 2026 22:41:11 UTC | 0xa758…4a27 | IN | Garlic Coin | $0.000 ETH | 0.00000235 | |
| 0x31a7d9…b47856 | Approve | 8,954,029 | 35 days agoMon, 13 Jul 2026 20:27:06 UTC | 0xdce7…46de | IN | Garlic Coin | $0.000 ETH | 0.00000239 | |
| 0x260188…052626 | Approve | 8,954,029 | 35 days agoMon, 13 Jul 2026 20:27:06 UTC | 0x4c1f…672f | IN | Garlic Coin | $0.000 ETH | 0.00000239 | |
| 0x5271ec…bfaa1f | Approve | 8,812,857 | 35 days agoMon, 13 Jul 2026 16:31:21 UTC | 0xb9f9…b71e | IN | Garlic Coin | $0.000 ETH | 0.00000234 | |
| 0xb124a5…3a641b | Approve | 8,461,111 | 35 days agoMon, 13 Jul 2026 06:44:11 UTC | 0x766c…2397 | IN | Garlic Coin | $0.000 ETH | 0.00000235 | |
| 0x11485b…3c9197 | Approve | 8,459,959 | 35 days agoMon, 13 Jul 2026 06:42:15 UTC | 0xf0a0…3349 | IN | Garlic Coin | $0.000 ETH | 0.00000235 | |
| 0xeb2c55…6a5ee8 | Approve | 8,459,958 | 35 days agoMon, 13 Jul 2026 06:42:15 UTC | 0x6881…8261 | IN | Garlic Coin | $0.000 ETH | 0.00000235 | |
| 0xdca14c…b82639 | Approve | 8,459,896 | 35 days agoMon, 13 Jul 2026 06:42:09 UTC | 0xf0a0…3349 | IN | Garlic Coin | $0.000 ETH | 0.00000235 | |
| 0x151e81…4f89aa | Approve | 8,459,837 | 35 days agoMon, 13 Jul 2026 06:42:03 UTC | 0x5ccf…763c | IN | Garlic Coin | $0.000 ETH | 0.00000235 |
| Block | Age | Parent Transaction Hash | Type | Method | From | To | Value | |
|---|---|---|---|---|---|---|---|---|
| 8,171,195 | 36 days agoSun, 12 Jul 2026 22:39:48 UTC | 0x830c8f…dccfe8 | CREATE2 | launchToken | 0x5245…7e28 | IN | 0xcf6b…93a2 | 0 ETH |