// SPDX-License-Identifier: MIT
/*
// 🥩 STEAKHOUSE FINANCE
SteakHouse Finance | NoTax Token Contract (ADVANCED Route)
📲 home: https://steakhouse.finance
✖️ x: https://x.com/steak_tech
📤 telegram: https://t.me/steakhouse
⚙️ github: https://github.com/steaktech
🔒 locker: https://locker.steakhouse.finance
📈 curve: https://curve.steakhouse.finance
✅ audit: https://skynet.certik.com/projects/steakhouse
🔥 trending: https://t.me/SteakTrending
🌱 deploys: https://t.me/SteakDeploys
🤖 buybot: https://t.me/SteakTechBot
This contract is deployed by SteakHouse Finance.
Contains 0 - 5% liquidity fee static & no ownership logic.
All minting and LP actions are done via the SteakHouse v4 advanced factory.
Secured by Certik Audits.
*/
pragma solidity ^0.8.24;
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
/**
* @title LaunchToken
* @notice Standard ERC-20 token for clawclick launches
* @dev Minimal token - all logic lives in the hook
*/
contract SteakHouseV4Token is ERC20 {
/// @notice Total supply: 1 billion tokens with 18 decimals
uint256 public constant TOTAL_SUPPLY = 1_000_000_000 * 1e18;
/// @notice The hook that manages this token's pool
address public immutable hook;
/// @notice Beneficiary address (receives trading fees)
address public immutable beneficiary;
/// @notice Creation timestamp
uint256 public immutable createdAt;
error OnlyHook();
modifier onlyHook() {
if (msg.sender != hook) revert OnlyHook();
_;
}
/**
* @param _name Token name
* @param _symbol Token symbol
* @param _hook The V4Hook address
* @param _beneficiary Fee recipient address
*/
constructor(
string memory _name,
string memory _symbol,
address _hook,
address _beneficiary
) ERC20(_name, _symbol) {
hook = _hook;
beneficiary = _beneficiary;
createdAt = block.timestamp;
// Mint entire supply to the hook for pool initialization
_mint(_hook, TOTAL_SUPPLY);
}
}[
{
"type": "constructor",
"inputs": [
{
"name": "_name",
"type": "string",
"internalType": "string"
},
{
"name": "_symbol",
"type": "string",
"internalType": "string"
},
{
"name": "_hook",
"type": "address",
"internalType": "address"
},
{
"name": "_beneficiary",
"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": "OnlyHook",
"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": "TOTAL_SUPPLY",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"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": "beneficiary",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "createdAt",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "decimals",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint8",
"internalType": "uint8"
}
],
"stateMutability": "view"
},
{
"name": "hook",
"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": "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"
}
]0x6080806040526004361015610012575f80fd5b5f3560e01c90816306fdde031461050357508063095ea7b31461048157806318160ddd1461046457806323b872dd14610385578063313ce5671461036a57806338af3eed1461032657806370a08231146102ef5780637f5a7c7b146102ab578063902d55a51461028557806395d89b411461016a578063a9059cbb14610139578063cf09e0d0146100ff5763dd62ed3e146100ab575f80fd5b346100fb5760403660031901126100fb576100c46105fc565b6100cc610612565b6001600160a01b039182165f908152600160209081526040808320949093168252928352819020549051908152f35b5f80fd5b346100fb575f3660031901126100fb5760206040517f000000000000000000000000000000000000000000000000000000006a777f038152f35b346100fb5760403660031901126100fb5761015f6101556105fc565b6024359033610628565b602060405160018152f35b346100fb575f3660031901126100fb576040515f6004548060011c9060018116801561027b575b6020831081146102675782855290811561024b57506001146101f5575b50819003601f01601f19168101906001600160401b038211818310176101e1576101dd829182604052826105d2565b0390f35b634e487b7160e01b5f52604160045260245ffd5b60045f9081529091507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b828210610235575060209150820101826101ae565b6001816020925483858801015201910190610220565b90506020925060ff191682840152151560051b820101826101ae565b634e487b7160e01b5f52602260045260245ffd5b91607f1691610191565b346100fb575f3660031901126100fb57604051676765c793fa10079d601b1b8152602090f35b346100fb575f3660031901126100fb576040517f000000000000000000000000f6cad697fcd2d400efabe2b248c878f20e229c8d6001600160a01b03168152602090f35b346100fb5760203660031901126100fb576001600160a01b036103106105fc565b165f525f602052602060405f2054604051908152f35b346100fb575f3660031901126100fb576040517f000000000000000000000000ed8af0f5e05df844c4c365ec253371225567d5686001600160a01b03168152602090f35b346100fb575f3660031901126100fb57602060405160128152f35b346100fb5760603660031901126100fb5761039e6105fc565b6103a6610612565b6001600160a01b0382165f818152600160209081526040808320338452909152902054909260443592915f1981106103e4575b5061015f9350610628565b8381106104495784156104365733156104235761015f945f52600160205260405f2060018060a01b0333165f526020528360405f2091039055846103d9565b634a1406b160e11b5f525f60045260245ffd5b63e602df0560e01b5f525f60045260245ffd5b8390637dc7a0d960e11b5f523360045260245260445260645ffd5b346100fb575f3660031901126100fb576020600254604051908152f35b346100fb5760403660031901126100fb5761049a6105fc565b602435903315610436576001600160a01b031690811561042357335f52600160205260405f20825f526020528060405f20556040519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560203392a3602060405160018152f35b346100fb575f3660031901126100fb575f6003548060011c906001811680156105c8575b6020831081146102675782855290811561024b57506001146105725750819003601f01601f19168101906001600160401b038211818310176101e1576101dd829182604052826105d2565b60035f9081529091507fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b8282106105b2575060209150820101826101ae565b600181602092548385880101520191019061059d565b91607f1691610527565b602060409281835280519182918282860152018484015e5f828201840152601f01601f1916010190565b600435906001600160a01b03821682036100fb57565b602435906001600160a01b03821682036100fb57565b6001600160a01b03169081156106d2576001600160a01b03169182156106bf57815f525f60205260405f20548181106106a657817fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92602092855f525f84520360405f2055845f525f825260405f20818154019055604051908152a3565b8263391434e360e21b5f5260045260245260445260645ffd5b63ec442f0560e01b5f525f60045260245ffd5b634b637e8f60e11b5f525f60045260245ffdfea164736f6c634300081a000a
| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| no token holdings | ||||
| 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 | |||||||||
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0x9c258b…017cb9 | 4 days agoFri, 14 Aug 2026 07:47:28 UTC | Transfer | [0] 0x000000000000…914d6df3 [1] 0x000000000000…43e40951 data: 0x000000000000000000…ffdbbbd5 |
| 0x86857b…b24b43 | 4 days agoFri, 14 Aug 2026 07:47:25 UTC | Approval | [0] 0x000000000000…914d6df3 [1] 0x000000000000…81bd8760 data: 0x000000000000000000…ffdbbbd5 |
| 0xeaf3a1…d3ff46 | 4 days agoFri, 14 Aug 2026 07:12:48 UTC | Transfer | [0] 0x000000000000…0e229c8d [1] 0x000000000000…5567d568 data: 0x000000000000000000…ffbca5fc |
| 0xeaf3a1…d3ff46 | 4 days agoFri, 14 Aug 2026 07:12:48 UTC | Transfer | [0] 0x000000000000…0e229c8d [1] 0x000000000000…914d6df3 data: 0x000000000000000000…ffdbbbd5 |
| 0xeaf3a1…d3ff46 | 4 days agoFri, 14 Aug 2026 07:12:48 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…0e229c8d data: 0x000000000000000000…ff9861d1 |
| 0xebcbc1…150f77 | 5 days agoWed, 12 Aug 2026 13:51:19 UTC | Transfer | [0] 0x000000000000…d6299674 [1] 0x000000000000…43e40951 data: 0x000000000000000000…393766b2 |
| 0x03100e…4a3160 | 5 days agoWed, 12 Aug 2026 13:51:18 UTC | Approval | [0] 0x000000000000…d6299674 [1] 0x000000000000…72c22734 data: 0xffffffffffffffffff…ffffffff |
| 0x79df66…14c3d7 | 5 days agoWed, 12 Aug 2026 13:51:16 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…d6299674 data: 0x000000000000000000…39374fdc |
| 0x5a6ebc…aed108 | 5 days agoWed, 12 Aug 2026 11:41:49 UTC | Transfer | [0] 0x000000000000…4d8c0c94 [1] 0x000000000000…43e40951 data: 0x000000000000000000…e8428db7 |
| 0x6ccd1f…44819c | 5 days agoWed, 12 Aug 2026 11:41:49 UTC | Approval | [0] 0x000000000000…4d8c0c94 [1] 0x000000000000…72c22734 data: 0xffffffffffffffffff…ffffffff |
| 0x39f7d8…989686 | 5 days agoWed, 12 Aug 2026 11:41:47 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…4d8c0c94 data: 0x000000000000000000…e84272a2 |
| 0x3971e1…dfef5f | 8 days agoSun, 09 Aug 2026 20:18:18 UTC | Transfer | [0] 0x000000000000…914d6df3 [1] 0x000000000000…43e40951 data: 0x000000000000000000…bccb3807 |
| 0x0ea08c…e79f30 | 8 days agoSun, 09 Aug 2026 20:18:15 UTC | Approval | [0] 0x000000000000…914d6df3 [1] 0x000000000000…81bd8760 data: 0x000000000000000000…bccb3807 |
| 0xff3fa8…9d549b | 8 days agoSun, 09 Aug 2026 17:32:43 UTC | Transfer | [0] 0x000000000000…0e229c8d [1] 0x000000000000…5567d568 data: 0x000000000000000000…a7c28ca0 |
| 0xff3fa8…9d549b | 8 days agoSun, 09 Aug 2026 17:32:43 UTC | Transfer | [0] 0x000000000000…0e229c8d [1] 0x000000000000…914d6df3 data: 0x000000000000000000…bccb3807 |
| 0xff3fa8…9d549b | 8 days agoSun, 09 Aug 2026 17:32:43 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…0e229c8d data: 0x000000000000000000…648dc4a7 |
| 0xa904be…054ac5 | 9 days agoSun, 09 Aug 2026 07:38:11 UTC | Transfer | [0] 0x000000000000…24c8fce5 [1] 0x000000000000…43e40951 data: 0x000000000000000000…6f7d56d9 |
| 0x1b0507…966207 | 9 days agoSun, 09 Aug 2026 07:21:32 UTC | Approval | [0] 0x000000000000…24c8fce5 [1] 0x000000000000…72c22734 data: 0xffffffffffffffffff…ffffffff |
| 0x40d37c…3a4fbe | 9 days agoSat, 08 Aug 2026 22:52:41 UTC | Transfer | [0] 0x000000000000…4dcaeb5e [1] 0x000000000000…43e40951 data: 0x000000000000000000…3761ed3e |
| 0x8fb977…ae13d3 | 9 days agoSat, 08 Aug 2026 22:52:39 UTC | Approval | [0] 0x000000000000…4dcaeb5e [1] 0x000000000000…ec8b474b data: 0xffffffffffffffffff…ffffffff |
| 0x519cf0…11698c | 9 days agoSat, 08 Aug 2026 22:04:41 UTC | Transfer | [0] 0x000000000000…56ffce7a [1] 0x000000000000…43e40951 data: 0x000000000000000000…7489dc8b |
| 0xaaf1bf…6cef9d | 9 days agoSat, 08 Aug 2026 19:55:55 UTC | Transfer | [0] 0x000000000000…d113f996 [1] 0x000000000000…43e40951 data: 0x000000000000000000…f9236a68 |
| 0xaaf1bf…6cef9d | 9 days agoSat, 08 Aug 2026 19:55:55 UTC | Transfer | [0] 0x000000000000…72414af3 [1] 0x000000000000…d113f996 data: 0x000000000000000000…f9236a69 |
| 0xaaf1bf…6cef9d | 9 days agoSat, 08 Aug 2026 19:55:55 UTC | Approval | [0] 0x000000000000…72414af3 [1] 0x000000000000…b66337b5 data: 0xffffffffffffffffff…ffffffff |
| 0xaaf1bf…6cef9d | 9 days agoSat, 08 Aug 2026 19:55:55 UTC | Transfer | [0] 0x000000000000…72414af3 [1] 0x000000000000…555e5e56 data: 0x000000000000000000…7fef3f2a |
| Type | Age | Block | Details |
|---|---|---|---|
| no cross-chain L1↔L2 transactions for this address | |||
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x03100e…4a3160 | Approve | 34,578,170 | 5 days agoWed, 12 Aug 2026 13:51:18 UTC | 0x8962…9674 | IN | Gnome Child | $0.000 ETH | 0.00000236 | |
| 0x6ccd1f…44819c | Approve | 34,500,390 | 5 days agoWed, 12 Aug 2026 11:41:49 UTC | 0x31fd…0c94 | IN | Gnome Child | $0.000 ETH | 0.00000237 | |
| 0x1b0507…966207 | Approve | 31,752,231 | 9 days agoSun, 09 Aug 2026 07:21:32 UTC | 0xad01…fce5 | IN | Gnome Child | $0.000 ETH | 0.00000133 | |
| 0x8fb977…ae13d3 | Approve | 31,447,539 | 9 days agoSat, 08 Aug 2026 22:52:39 UTC | 0x0a1e…eb5e | IN | Gnome Child | $0.000 ETH | 0.00000137 | |
| 0x391049…1162cf | Approve | 31,321,137 | 9 days agoSat, 08 Aug 2026 19:21:46 UTC | 0x407a…4221 | IN | Gnome Child | $0.000 ETH | 0.00000134 | |
| 0x88fd09…bdf1ea | Approve | 31,321,135 | 9 days agoSat, 08 Aug 2026 19:21:46 UTC | 0xc5b4…d08c | IN | Gnome Child | $0.000 ETH | 0.00000134 | |
| 0x8fbdfc…0b838b | Approve | 31,316,076 | 9 days agoSat, 08 Aug 2026 19:13:19 UTC | 0xbacc…6db9 | IN | Gnome Child | $0.000 ETH | 0.00000134 | |
| 0x366904…0ec516 | Approve | 31,315,909 | 9 days agoSat, 08 Aug 2026 19:13:02 UTC | 0xed8a…d568 | IN | Gnome Child | $0.000 ETH | 0.00000134 | |
| 0x8fa091…d2ed32 | Approve | 31,315,428 | 9 days agoSat, 08 Aug 2026 19:12:13 UTC | 0x1447…e322 | IN | Gnome Child | $0.000 ETH | 0.00000136 | |
| 0x730fc8…288ac6 | Approve | 31,314,885 | 9 days agoSat, 08 Aug 2026 19:11:19 UTC | 0xab7a…ccb3 | IN | Gnome Child | $0.000 ETH | 0.00000135 | |
| 0x560f41…b6bdfb | Approve | 31,314,868 | 9 days agoSat, 08 Aug 2026 19:11:17 UTC | 0xab7a…ccb3 | IN | Gnome Child | $0.000 ETH | 0.00000135 | |
| 0xe40bf8…47cf91 | Approve | 31,314,818 | 9 days agoSat, 08 Aug 2026 19:11:12 UTC | 0x3182…048a | IN | Gnome Child | $0.000 ETH | 0.00000136 | |
| 0xb43f17…c9b22b | Approve | 31,314,817 | 9 days agoSat, 08 Aug 2026 19:11:12 UTC | 0x3182…048a | IN | Gnome Child | $0.000 ETH | 0.00000135 | |
| 0x2f0090…ae74d6 | Approve | 31,314,792 | 9 days agoSat, 08 Aug 2026 19:11:10 UTC | 0x31fd…0c94 | IN | Gnome Child | $0.000 ETH | 0.00000136 | |
| 0x1ed811…cbd760 | Approve | 31,314,766 | 9 days agoSat, 08 Aug 2026 19:11:07 UTC | 0x7509…4c78 | IN | Gnome Child | $0.000 ETH | 0.00000134 | |
| 0xffdfe5…cd9069 | Approve | 31,314,731 | 9 days agoSat, 08 Aug 2026 19:11:03 UTC | 0xe2b6…53b7 | IN | Gnome Child | $0.000 ETH | 0.00000136 | |
| 0x273742…c33f64 | Approve | 31,314,694 | 9 days agoSat, 08 Aug 2026 19:11:00 UTC | 0x8962…9674 | IN | Gnome Child | $0.000 ETH | 0.00000134 | |
| 0xd12ede…79e434 | Approve | 31,314,558 | 9 days agoSat, 08 Aug 2026 19:10:46 UTC | 0x7ed2…0b87 | IN | Gnome Child | $0.000 ETH | 0.00000134 | |
| 0xcb6583…1f5176 | Approve | 31,314,558 | 9 days agoSat, 08 Aug 2026 19:10:46 UTC | 0x8ed2…27aa | IN | Gnome Child | $0.000 ETH | 0.00000134 | |
| 0x892c7e…09c363 | Approve | 31,314,558 | 9 days agoSat, 08 Aug 2026 19:10:46 UTC | 0x1cc1…82c8 | IN | Gnome Child | $0.000 ETH | 0.00000134 | |
| 0x73bc3b…fc9307 | Approve | 31,314,558 | 9 days agoSat, 08 Aug 2026 19:10:46 UTC | 0xc5fb…e380 | IN | Gnome Child | $0.000 ETH | 0.00000134 | |
| 0x89b64e…fd4cf9 | Approve | 31,314,558 | 9 days agoSat, 08 Aug 2026 19:10:46 UTC | 0x33f9…8f51 | IN | Gnome Child | $0.000 ETH | 0.00000134 | |
| 0x5432ec…7b0f94 | Approve | 31,314,552 | 9 days agoSat, 08 Aug 2026 19:10:45 UTC | 0xf4a1…d432 | IN | Gnome Child | $0.000 ETH | 0.00000136 | |
| 0xc14775…722ddc | Approve | 31,314,545 | 9 days agoSat, 08 Aug 2026 19:10:45 UTC | 0xf4a1…d432 | IN | Gnome Child | $0.000 ETH | 0.00000134 | |
| 0x701c2c…3d4c62 | Approve | 31,314,541 | 9 days agoSat, 08 Aug 2026 19:10:44 UTC | 0xcf4f…0e93 | IN | Gnome Child | $0.000 ETH | 0.00000135 |
| Block | Age | Parent Transaction Hash | Type | Method | From | To | Value | |
|---|---|---|---|---|---|---|---|---|
| 31,314,051 | 9 days agoSat, 08 Aug 2026 19:09:55 UTC | 0xdcff54…72d3c9 | CREATE2 | 0x2c5d2671 | 0xf6ca…9c8d | IN | 0x576e…2adc | 0 ETH |