// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.2.0) (proxy/beacon/BeaconProxy.sol)
pragma solidity ^0.8.22;
import {IBeacon} from "./IBeacon.sol";
import {Proxy} from "../Proxy.sol";
import {ERC1967Utils} from "../ERC1967/ERC1967Utils.sol";
/**
* @dev This contract implements a proxy that gets the implementation address for each call from an {UpgradeableBeacon}.
*
* The beacon address can only be set once during construction, and cannot be changed afterwards. It is stored in an
* immutable variable to avoid unnecessary storage reads, and also in the beacon storage slot specified by
* https://eips.ethereum.org/EIPS/eip-1967[ERC-1967] so that it can be accessed externally.
*
* CAUTION: Since the beacon address can never be changed, you must ensure that you either control the beacon, or trust
* the beacon to not upgrade the implementation maliciously.
*
* IMPORTANT: Do not use the implementation logic to modify the beacon storage slot. Doing so would leave the proxy in
* an inconsistent state where the beacon storage slot does not match the beacon address.
*/
contract BeaconProxy is Proxy {
// An immutable address for the beacon to avoid unnecessary SLOADs before each delegate call.
address private immutable _beacon;
/**
* @dev Initializes the proxy with `beacon`.
*
* If `data` is nonempty, it's used as data in a delegate call to the implementation returned by the beacon. This
* will typically be an encoded function call, and allows initializing the storage of the proxy like a Solidity
* constructor.
*
* Requirements:
*
* - `beacon` must be a contract with the interface {IBeacon}.
* - If `data` is empty, `msg.value` must be zero.
*/
constructor(address beacon, bytes memory data) payable {
ERC1967Utils.upgradeBeaconToAndCall(beacon, data);
_beacon = beacon;
}
/**
* @dev Returns the current implementation address of the associated beacon.
*/
function _implementation() internal view virtual override returns (address) {
return IBeacon(_getBeacon()).implementation();
}
/**
* @dev Returns the beacon.
*/
function _getBeacon() internal view virtual returns (address) {
return _beacon;
}
}[
{
"type": "constructor",
"inputs": [
{
"name": "beacon",
"type": "address",
"internalType": "address"
},
{
"name": "data",
"type": "bytes",
"internalType": "bytes"
}
],
"stateMutability": "payable"
},
{
"name": "AddressEmptyCode",
"type": "error",
"inputs": [
{
"name": "target",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC1967InvalidBeacon",
"type": "error",
"inputs": [
{
"name": "beacon",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC1967InvalidImplementation",
"type": "error",
"inputs": [
{
"name": "implementation",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC1967NonPayable",
"type": "error",
"inputs": []
},
{
"name": "FailedCall",
"type": "error",
"inputs": []
},
{
"name": "BeaconUpgraded",
"type": "event",
"inputs": [
{
"name": "beacon",
"type": "address",
"indexed": true,
"internalType": "address"
}
],
"anonymous": false
},
{
"type": "fallback",
"stateMutability": "payable"
}
][
{
"type": "constructor",
"inputs": [],
"stateMutability": "nonpayable"
},
{
"name": "InsufficientAllowance",
"type": "error",
"inputs": []
},
{
"name": "InsufficientBalance",
"type": "error",
"inputs": []
},
{
"name": "InvalidInitialization",
"type": "error",
"inputs": []
},
{
"name": "LaunchBlockBuyBlocked",
"type": "error",
"inputs": [
{
"name": "recipient",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "MaxTxExceeded",
"type": "error",
"inputs": [
{
"name": "originator",
"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": "NotInitializing",
"type": "error",
"inputs": []
},
{
"name": "Unauthorized",
"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": "Initialized",
"type": "event",
"inputs": [
{
"name": "version",
"type": "uint64",
"indexed": false,
"internalType": "uint64"
}
],
"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": "account",
"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": "initialize",
"type": "function",
"inputs": [
{
"name": "n",
"type": "string",
"internalType": "string"
},
{
"name": "s",
"type": "string",
"internalType": "string"
},
{
"name": "uri",
"type": "string",
"internalType": "string"
},
{
"name": "supply",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "pair",
"type": "address",
"internalType": "address"
},
{
"name": "fee",
"type": "uint24",
"internalType": "uint24"
},
{
"name": "restrictionBlocks",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "maxTx",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "receiver",
"type": "address",
"internalType": "address"
},
{
"name": "launchOrigin_",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"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": "launchOrigin",
"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": "maxTxLimit",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"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": "restrictionEndBlock",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "restrictionExempt",
"type": "function",
"inputs": [
{
"name": "account",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "view"
},
{
"name": "setInitialBuyExemption",
"type": "function",
"inputs": [
{
"name": "account",
"type": "address",
"internalType": "address"
},
{
"name": "enabled",
"type": "bool",
"internalType": "bool"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "setPool",
"type": "function",
"inputs": [
{
"name": "pool",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "symbol",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "tokenURI",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "totalSupply",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "transfer",
"type": "function",
"inputs": [
{
"name": "to",
"type": "address",
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "nonpayable"
},
{
"name": "transferFrom",
"type": "function",
"inputs": [
{
"name": "from",
"type": "address",
"internalType": "address"
},
{
"name": "to",
"type": "address",
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "nonpayable"
}
]0x60806040819052635c60da1b60e01b81526020816004817f000000000000000000000000684b641e6ba1e312699198493ce23b850733c1fa6001600160a01b03165afa90811560a6575f916053575b5060d5565b905060203d60201160a0575b601f8101601f191682019167ffffffffffffffff831181841017608c576087926040520160b1565b5f604e565b634e487b7160e01b5f52604160045260245ffd5b503d605f565b6040513d5f823e3d90fd5b602090607f19011260d1576080516001600160a01b038116810360d15790565b5f80fd5b5f8091368280378136915af43d5f803e1560ed573d5ff35b3d5ffdfea26469706673582212202ee8a5cde77af177b5f767ce1bccc855eb92102405ad7b67590648446518f21b64736f6c63430008180033
| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| DIH | 1 | $0.0000123 | $0 |
| Type | Age | Block | Details |
|---|---|---|---|
| no cross-chain L1↔L2 transactions for this address | |||
| Block | Age | Parent Transaction Hash | Type | Method | From | To | Value | |
|---|---|---|---|---|---|---|---|---|
| no internal transactions found for this address yet (traced blocks + on-demand) | ||||||||
| 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 | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x118d00e0…d77654 | Transfer | 20,632,903 | 19 days agoMon, 27 Jul 2026 09:42:35 UTC | 0xcaf7…5d11 | IN | 0xdf1f…cfb8 | $0.001 DIH |
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0x366d8d…01459d | 21 days agoSat, 25 Jul 2026 12:14:04 UTC | Transfer | [0] 0x000000000000…d8d9bbfa [1] 0x000000000000…72a9df32 data: 0x000000000000000000…3fd29b6b |
| 0x5ce8a2…a706ad | 21 days agoSat, 25 Jul 2026 12:13:59 UTC | Approval | [0] 0x000000000000…d8d9bbfa [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…3fd29b6b |
| 0xd86477…373c4f | 23 days agoThu, 23 Jul 2026 10:49:06 UTC | Transfer | [0] 0x000000000000…72a9df32 [1] 0x000000000000…d8d9bbfa data: 0x000000000000000000…7dac399e |
| 0x9f5b38…092c07 | 23 days agoThu, 23 Jul 2026 10:48:37 UTC | Transfer | [0] 0x000000000000…72a9df32 [1] 0x000000000000…d8d9bbfa data: 0x000000000000000000…c22661cd |
| 0x1ea3fd…bb8ab3 | 23 days agoThu, 23 Jul 2026 02:35:19 UTC | Transfer | [0] 0x000000000000…72a9df32 [1] 0x000000000000…0e1ff178 data: 0x000000000000000000…38e9cf14 |
| 0x4274b6…befd4e | 28 days agoSat, 18 Jul 2026 15:02:55 UTC | Transfer | [0] 0x000000000000…72a9df32 [1] 0x000000000000…ac2032da data: 0x000000000000000000…cedce807 |
| 0xc804a8…357538 | 31 days agoWed, 15 Jul 2026 21:31:42 UTC | Approval | [0] 0x000000000000…a1ee6e4f [1] 0x000000000000…262c40dc data: 0x000000000000000000…00000000 |
| 0xa13144…42f534 | 31 days agoWed, 15 Jul 2026 21:23:17 UTC | Approval | [0] 0x000000000000…a1ee6e4f [1] 0x000000000000…262c40dc data: 0x000000000000000000…00000000 |
| 0xd5e4f5…df6688 | 31 days agoWed, 15 Jul 2026 14:55:03 UTC | Transfer | [0] 0x000000000000…a2fa1af2 [1] 0x000000000000…72a9df32 data: 0x000000000000000000…9109529b |
| 0x4b8e02…86fad4 | 31 days agoWed, 15 Jul 2026 14:55:03 UTC | Approval | [0] 0x000000000000…a2fa1af2 [1] 0x000000000000…262c40dc data: 0xffffffffffffffffff…ffffffff |
| 0x373dec…5a89ce | 31 days agoWed, 15 Jul 2026 14:55:00 UTC | Transfer | [0] 0x000000000000…72a9df32 [1] 0x000000000000…a2fa1af2 data: 0x000000000000000000…9109529b |
| 0x1732f3…ec197b | 31 days agoWed, 15 Jul 2026 03:59:26 UTC | Transfer | [0] 0x000000000000…b4fc0000 [1] 0x000000000000…72a9df32 data: 0x000000000000000000…6f985c5d |
| 0xe63015…3476e5 | 31 days agoWed, 15 Jul 2026 03:59:23 UTC | Approval | [0] 0x000000000000…b4fc0000 [1] 0x000000000000…549a2cbd data: 0xffffffffffffffffff…ffffffff |
| 0x9d3abc…c6ca3a | 31 days agoWed, 15 Jul 2026 03:59:23 UTC | Transfer | [0] 0x000000000000…72a9df32 [1] 0x000000000000…b4fc0000 data: 0x000000000000000000…6f985c5d |
| 0x0bda7e…d6dfe6 | 31 days agoWed, 15 Jul 2026 03:53:29 UTC | Transfer | [0] 0x000000000000…ef234963 [1] 0x000000000000…72a9df32 data: 0x000000000000000000…c57fa90d |
| 0x5b37e9…787e3e | 31 days agoWed, 15 Jul 2026 03:53:29 UTC | Approval | [0] 0x000000000000…ef234963 [1] 0x000000000000…262c40dc data: 0xffffffffffffffffff…ffffffff |
| 0x0c3fca…4cf220 | 31 days agoWed, 15 Jul 2026 02:25:14 UTC | Transfer | [0] 0x000000000000…24c00f6a [1] 0x000000000000…72a9df32 data: 0x000000000000000000…ae2320a1 |
| 0x0c3fca…4cf220 | 31 days agoWed, 15 Jul 2026 02:25:14 UTC | Approval | [0] 0x000000000000…24c00f6a [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…ae2320a1 |
| 0x0c3fca…4cf220 | 31 days agoWed, 15 Jul 2026 02:25:14 UTC | Approval | [0] 0x000000000000…24c00f6a [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…00000000 |
| 0xc2f9e6…59a973 | 31 days agoWed, 15 Jul 2026 02:24:52 UTC | Transfer | [0] 0x000000000000…72a9df32 [1] 0x000000000000…24c00f6a data: 0x000000000000000000…ae2320a1 |
| 0x1b3e31…ed8a12 | 32 days agoTue, 14 Jul 2026 18:54:45 UTC | Transfer | [0] 0x000000000000…d733cca7 [1] 0x000000000000…43e40951 data: 0x000000000000000000…c27b1b6b |
| 0x8d3143…86c908 | 32 days agoTue, 14 Jul 2026 18:54:41 UTC | Approval | [0] 0x000000000000…d733cca7 [1] 0x000000000000…3ac78ba3 data: 0xffffffffffffffffff…ffffffff |
| 0x8d817a…9e2f57 | 32 days agoTue, 14 Jul 2026 18:54:00 UTC | Transfer | [0] 0x000000000000…72a9df32 [1] 0x000000000000…d733cca7 data: 0x000000000000000000…0b32ec23 |
| 0x10ac6f…286095 | 32 days agoTue, 14 Jul 2026 17:45:36 UTC | Transfer | [0] 0x000000000000…72a9df32 [1] 0x000000000000…ef234963 data: 0x000000000000000000…56883203 |
| 0xa8f1ce…ee1296 | 32 days agoTue, 14 Jul 2026 17:45:33 UTC | Transfer | [0] 0x000000000000…72a9df32 [1] 0x000000000000…ef234963 data: 0x000000000000000000…6ef7770a |
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x5ce8a2…a706ad | Approve | 19,001,098 | 21 days agoSat, 25 Jul 2026 12:13:59 UTC | 0x4265…bbfa | IN | Stonks | $0.000 ETH | 0.00000441 | |
| 0xc804a8…357538 | Approve | 10,719,773 | 31 days agoWed, 15 Jul 2026 21:31:42 UTC | 0x287c…6e4f | IN | Stonks | $0.000 ETH | 0.00000232 | |
| 0xa13144…42f534 | Approve | 10,714,724 | 31 days agoWed, 15 Jul 2026 21:23:17 UTC | 0x287c…6e4f | IN | Stonks | $0.000 ETH | 0.00000217 | |
| 0x4b8e02…86fad4 | Approve | 10,480,946 | 31 days agoWed, 15 Jul 2026 14:55:03 UTC | 0x28a1…1af2 | IN | Stonks | $0.000 ETH | 0.00000327 | |
| 0xe63015…3476e5 | Approve | 10,087,135 | 31 days agoWed, 15 Jul 2026 03:59:23 UTC | 0x0000…0000 | IN | Stonks | $0.000 ETH | 0.00000276 | |
| 0x5b37e9…787e3e | Approve | 10,083,607 | 31 days agoWed, 15 Jul 2026 03:53:29 UTC | 0x5ebf…4963 | IN | Stonks | $0.000 ETH | 0.00000274 | |
| 0x8d3143…86c908 | Approve | 9,761,083 | 32 days agoTue, 14 Jul 2026 18:54:41 UTC | 0x152b…cca7 | IN | Stonks | $0.000 ETH | 0.00000283 | |
| 0xea1bfe…2ecf77 | Approve | 9,693,902 | 32 days agoTue, 14 Jul 2026 17:02:35 UTC | 0x3645…e550 | IN | Stonks | $0.000 ETH | 0.00000273 | |
| 0x4a037c…670b3f | Approve | 9,693,901 | 32 days agoTue, 14 Jul 2026 17:02:35 UTC | 0x7c4f…03f0 | IN | Stonks | $0.000 ETH | 0.00000272 | |
| 0x8cb501…3148e5 | Approve | 9,693,859 | 32 days agoTue, 14 Jul 2026 17:02:31 UTC | 0x7ccc…5083 | IN | Stonks | $0.000 ETH | 0.00000277 | |
| 0x6038c3…8f01ae | Approve | 9,693,859 | 32 days agoTue, 14 Jul 2026 17:02:31 UTC | 0xa398…5acc | IN | Stonks | $0.000 ETH | 0.00000277 | |
| 0xba0311…a90e26 | Approve | 9,693,859 | 32 days agoTue, 14 Jul 2026 17:02:31 UTC | 0x67bc…2b98 | IN | Stonks | $0.000 ETH | 0.00000277 | |
| 0x461f75…ea0e24 | Approve | 9,693,859 | 32 days agoTue, 14 Jul 2026 17:02:31 UTC | 0x287c…6e4f | IN | Stonks | $0.000 ETH | 0.00000277 | |
| 0xb5193f…9d1bc4 | Approve | 9,693,859 | 32 days agoTue, 14 Jul 2026 17:02:31 UTC | 0x888a…00ed | IN | Stonks | $0.000 ETH | 0.00000277 | |
| 0xa04873…356934 | Approve | 9,693,844 | 32 days agoTue, 14 Jul 2026 17:02:29 UTC | 0x5fd3…8347 | IN | Stonks | $0.000 ETH | 0.00000272 | |
| 0x30b17c…934df3 | Approve | 9,693,759 | 32 days agoTue, 14 Jul 2026 17:02:20 UTC | 0x4180…5000 | IN | Stonks | $0.000 ETH | 0.00000275 | |
| 0xd37f4d…1f2839 | Approve | 9,693,759 | 32 days agoTue, 14 Jul 2026 17:02:20 UTC | 0xf6a2…516f | IN | Stonks | $0.000 ETH | 0.00000275 | |
| 0xc58848…6fb609 | Approve | 9,693,668 | 32 days agoTue, 14 Jul 2026 17:02:11 UTC | 0xd126…ae28 | IN | Stonks | $0.000 ETH | 0.00000280 | |
| 0xb95f52…3fda47 | Approve | 9,693,666 | 32 days agoTue, 14 Jul 2026 17:02:11 UTC | 0x974c…30c2 | IN | Stonks | $0.000 ETH | 0.00000278 | |
| 0xe93ea9…446fa1 | Approve | 9,693,666 | 32 days agoTue, 14 Jul 2026 17:02:11 UTC | 0xe108…5fc4 | IN | Stonks | $0.000 ETH | 0.00000278 | |
| 0x40d009…27a248 | Approve | 9,693,666 | 32 days agoTue, 14 Jul 2026 17:02:11 UTC | 0xcfe3…491f | IN | Stonks | $0.000 ETH | 0.00000278 | |
| 0x8bc15b…2387f4 | Approve | 9,693,666 | 32 days agoTue, 14 Jul 2026 17:02:11 UTC | 0x2026…4909 | IN | Stonks | $0.000 ETH | 0.00000278 | |
| 0xc84dec…aae35c | Approve | 9,693,666 | 32 days agoTue, 14 Jul 2026 17:02:11 UTC | 0x5d05…577f | IN | Stonks | $0.000 ETH | 0.00000278 | |
| 0x1085b5…1b7969 | Approve | 9,693,651 | 32 days agoTue, 14 Jul 2026 17:02:10 UTC | 0xf98e…9264 | IN | Stonks | $0.000 ETH | 0.00000271 | |
| 0x404cd2…841f04 | Approve | 9,693,651 | 32 days agoTue, 14 Jul 2026 17:02:10 UTC | 0xcff0…6181 | IN | Stonks | $0.000 ETH | 0.00000271 |