| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| United States Global Dollars (USDG) | USDG | 62.402792 | $1 | $62.4 |
| Universal Stable Digital Coin (USDC) | USDC | 2 | $1 | $2 |
| Global Dollar (USDG) | USDG | 2 | $1 | $2 |
| Global Dollar (USDG) | USDG | 1 | $1 | $1 |
| Z (Z) | Z | 10 | — | — |
| Shibinhood (WOOF) | WOOF | 7 | — | — |
| Brokee Cat (BrokeCat) | BrokeCat | 7 | — | — |
| Cash Cat (CASHCAT) | CASHCAT | 7 | — | — |
| Tiktok Coin (Tiktok) | Tiktok | 7 | — | — |
| dont blink (BLINK) | BLINK | 7 | — | — |
| YOLO (YOLO) | YOLO | 5 | — | — |
| Mancer (MANCER) | MANCER | 5 | — | — |
| Lemon.fun (LEMON) | LEMON | 5 | — | — |
| Stock Coin (STOCK) | STOCK | 5 | — | — |
| Dog in Hood (DIH) | DIH | 2.99 | — | — |
| Hyper RobinHood Liquid (HYRL) | HYRL | 0.9 | — | — |
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/ERC1967/ERC1967Proxy.sol)
pragma solidity ^0.8.20;
import {Proxy} from "../Proxy.sol";
import {ERC1967Utils} from "./ERC1967Utils.sol";
/**
* @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an
* implementation address that can be changed. This address is stored in storage in the location specified by
* https://eips.ethereum.org/EIPS/eip-1967[EIP1967], so that it doesn't conflict with the storage layout of the
* implementation behind the proxy.
*/
contract ERC1967Proxy is Proxy {
/**
* @dev Initializes the upgradeable proxy with an initial implementation specified by `implementation`.
*
* If `_data` is nonempty, it's used as data in a delegate call to `implementation`. This will typically be an
* encoded function call, and allows initializing the storage of the proxy like a Solidity constructor.
*
* Requirements:
*
* - If `data` is empty, `msg.value` must be zero.
*/
constructor(address implementation, bytes memory _data) payable {
ERC1967Utils.upgradeToAndCall(implementation, _data);
}
/**
* @dev Returns the current implementation address.
*
* TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using
* the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.
* `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc`
*/
function _implementation() internal view virtual override returns (address) {
return ERC1967Utils.getImplementation();
}
}[
{
"type": "constructor",
"inputs": [
{
"name": "implementation",
"type": "address",
"internalType": "address"
},
{
"name": "_data",
"type": "bytes",
"internalType": "bytes"
}
],
"stateMutability": "payable"
},
{
"name": "AddressEmptyCode",
"type": "error",
"inputs": [
{
"name": "target",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC1967InvalidImplementation",
"type": "error",
"inputs": [
{
"name": "implementation",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC1967NonPayable",
"type": "error",
"inputs": []
},
{
"name": "FailedInnerCall",
"type": "error",
"inputs": []
},
{
"name": "Upgraded",
"type": "event",
"inputs": [
{
"name": "implementation",
"type": "address",
"indexed": true,
"internalType": "address"
}
],
"anonymous": false
},
{
"type": "fallback",
"stateMutability": "payable"
}
][
{
"type": "constructor",
"inputs": [
{
"name": "anEntryPoint",
"type": "address",
"internalType": "contract IEntryPoint"
}
],
"stateMutability": "nonpayable"
},
{
"name": "AddressEmptyCode",
"type": "error",
"inputs": [
{
"name": "target",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ECDSAInvalidSignature",
"type": "error",
"inputs": []
},
{
"name": "ECDSAInvalidSignatureLength",
"type": "error",
"inputs": [
{
"name": "length",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "ECDSAInvalidSignatureS",
"type": "error",
"inputs": [
{
"name": "s",
"type": "bytes32",
"internalType": "bytes32"
}
]
},
{
"name": "ERC1967InvalidImplementation",
"type": "error",
"inputs": [
{
"name": "implementation",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC1967NonPayable",
"type": "error",
"inputs": []
},
{
"name": "FailedInnerCall",
"type": "error",
"inputs": []
},
{
"name": "InvalidInitialization",
"type": "error",
"inputs": []
},
{
"name": "NotInitializing",
"type": "error",
"inputs": []
},
{
"name": "UUPSUnauthorizedCallContext",
"type": "error",
"inputs": []
},
{
"name": "UUPSUnsupportedProxiableUUID",
"type": "error",
"inputs": [
{
"name": "slot",
"type": "bytes32",
"internalType": "bytes32"
}
]
},
{
"name": "Initialized",
"type": "event",
"inputs": [
{
"name": "version",
"type": "uint64",
"indexed": false,
"internalType": "uint64"
}
],
"anonymous": false
},
{
"name": "SimpleAccountInitialized",
"type": "event",
"inputs": [
{
"name": "entryPoint",
"type": "address",
"indexed": true,
"internalType": "contract IEntryPoint"
},
{
"name": "owner",
"type": "address",
"indexed": true,
"internalType": "address"
}
],
"anonymous": false
},
{
"name": "Upgraded",
"type": "event",
"inputs": [
{
"name": "implementation",
"type": "address",
"indexed": true,
"internalType": "address"
}
],
"anonymous": false
},
{
"name": "UPGRADE_INTERFACE_VERSION",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "addDeposit",
"type": "function",
"inputs": [],
"outputs": [],
"stateMutability": "payable"
},
{
"name": "entryPoint",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "contract IEntryPoint"
}
],
"stateMutability": "view"
},
{
"name": "execute",
"type": "function",
"inputs": [
{
"name": "dest",
"type": "address",
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "func",
"type": "bytes",
"internalType": "bytes"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "executeBatch",
"type": "function",
"inputs": [
{
"name": "dest",
"type": "address[]",
"internalType": "address[]"
},
{
"name": "value",
"type": "uint256[]",
"internalType": "uint256[]"
},
{
"name": "func",
"type": "bytes[]",
"internalType": "bytes[]"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "getDeposit",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "getNonce",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "initialize",
"type": "function",
"inputs": [
{
"name": "anOwner",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "onERC1155BatchReceived",
"type": "function",
"inputs": [
{
"name": "",
"type": "address",
"internalType": "address"
},
{
"name": "",
"type": "address",
"internalType": "address"
},
{
"name": "",
"type": "uint256[]",
"internalType": "uint256[]"
},
{
"name": "",
"type": "uint256[]",
"internalType": "uint256[]"
},
{
"name": "",
"type": "bytes",
"internalType": "bytes"
}
],
"outputs": [
{
"name": "",
"type": "bytes4",
"internalType": "bytes4"
}
],
"stateMutability": "pure"
},
{
"name": "onERC1155Received",
"type": "function",
"inputs": [
{
"name": "",
"type": "address",
"internalType": "address"
},
{
"name": "",
"type": "address",
"internalType": "address"
},
{
"name": "",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "",
"type": "bytes",
"internalType": "bytes"
}
],
"outputs": [
{
"name": "",
"type": "bytes4",
"internalType": "bytes4"
}
],
"stateMutability": "pure"
},
{
"name": "onERC721Received",
"type": "function",
"inputs": [
{
"name": "",
"type": "address",
"internalType": "address"
},
{
"name": "",
"type": "address",
"internalType": "address"
},
{
"name": "",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "",
"type": "bytes",
"internalType": "bytes"
}
],
"outputs": [
{
"name": "",
"type": "bytes4",
"internalType": "bytes4"
}
],
"stateMutability": "pure"
},
{
"name": "owner",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "proxiableUUID",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "bytes32",
"internalType": "bytes32"
}
],
"stateMutability": "view"
},
{
"name": "supportsInterface",
"type": "function",
"inputs": [
{
"name": "interfaceId",
"type": "bytes4",
"internalType": "bytes4"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "view"
},
{
"name": "upgradeToAndCall",
"type": "function",
"inputs": [
{
"name": "newImplementation",
"type": "address",
"internalType": "address"
},
{
"name": "data",
"type": "bytes",
"internalType": "bytes"
}
],
"outputs": [],
"stateMutability": "payable"
},
{
"name": "validateUserOp",
"type": "function",
"inputs": [
{
"name": "userOp",
"type": "tuple",
"components": [
{
"name": "sender",
"type": "address",
"internalType": "address"
},
{
"name": "nonce",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "initCode",
"type": "bytes",
"internalType": "bytes"
},
{
"name": "callData",
"type": "bytes",
"internalType": "bytes"
},
{
"name": "accountGasLimits",
"type": "bytes32",
"internalType": "bytes32"
},
{
"name": "preVerificationGas",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "gasFees",
"type": "bytes32",
"internalType": "bytes32"
},
{
"name": "paymasterAndData",
"type": "bytes",
"internalType": "bytes"
},
{
"name": "signature",
"type": "bytes",
"internalType": "bytes"
}
],
"internalType": "struct PackedUserOperation"
},
{
"name": "userOpHash",
"type": "bytes32",
"internalType": "bytes32"
},
{
"name": "missingAccountFunds",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "validationData",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "nonpayable"
},
{
"name": "withdrawDepositTo",
"type": "function",
"inputs": [
{
"name": "withdrawAddress",
"type": "address",
"internalType": "address payable"
},
{
"name": "amount",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"type": "receive",
"stateMutability": "payable"
}
]0x6080604052600a600c565b005b60186014601a565b605e565b565b600060597f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5473ffffffffffffffffffffffffffffffffffffffff1690565b905090565b3660008037600080366000845af43d6000803e808015607c573d6000f35b3d6000fdfea2646970667358221220d7f23a80daebb5531c9e4a18d87e812fca112e5df7e56433218edcc12bbe415d64736f6c63430008170033
| 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 ? | ||
|---|---|---|---|---|---|---|---|---|---|
| No direct transactions — this address is only ever reached via internal calls (common for a contract only invoked through a router or proxy). View Internal Transactions → | |||||||||
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0xd3fae6…6fa754 | 9 days agoSat, 08 Aug 2026 09:19:55 UTC | 0xc7f505…81d2 | data: 0x000000000000000000…00000001 |
| 0xd3fae6…6fa754 | 9 days agoSat, 08 Aug 2026 09:19:55 UTC | 0x47e55c…e5de | [0] 0x000000000000…f37da032 [1] 0x000000000000…892a542e |
| 0xd3fae6…6fa754 | 9 days agoSat, 08 Aug 2026 09:19:55 UTC | 0xbc7cd7…2d3b | [0] 0x000000000000…bb1400c2 |
| Transaction Hash | Method | Block | Age | From | To | Amount | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| 0xb4e86af3…3b3385 | Transfer | 39,169,060 | 6 hrs agoMon, 17 Aug 2026 21:43:45 UTC | 0x602e…7bd0 | IN | 0xae18…2a4c | 1 USDG | Global Dollar (USDG) | |
| 0x628680df…451838 | Transfer | 39,105,195 | 8 hrs agoMon, 17 Aug 2026 19:56:58 UTC | 0x8c94…ec08 | IN | 0xae18…2a4c | 0.9 HYRL | Hyper RobinHood Liquid (HYRL) | |
| 0xae548829…9534df | Transfer | 39,088,360 | 8 hrs agoMon, 17 Aug 2026 19:28:49 UTC | 0xf8e0…c306 | IN | 0xae18…2a4c | 10 Z | Z (Z) | |
| 0xb6128633…2593d2 | Transfer | 39,068,560 | 9 hrs agoMon, 17 Aug 2026 18:55:44 UTC | 0xd2e4…b70c | IN | 0xae18…2a4c | 2 USDG | Global Dollar (USDG) | |
| 0x51a375ec…a06490 | Transfer | 39,063,670 | 9 hrs agoMon, 17 Aug 2026 18:47:33 UTC | 0x3f48…48ee | IN | 0xae18…2a4c | 2 USDC | Universal Stable Digital Coin (USDC) | |
| 0xed51d302…985bd0 | Transfer | 39,048,928 | 9 hrs agoMon, 17 Aug 2026 18:22:55 UTC | 0xcb85…9908 | IN | 0xae18…2a4c | 5 STOCK | Stock Coin (STOCK) | |
| 0x34594d82…af47a2 | Transfer | 39,048,472 | 9 hrs agoMon, 17 Aug 2026 18:22:09 UTC | 0xcb85…9908 | IN | 0xae18…2a4c | 5 LEMON | Lemon.fun (LEMON) | |
| 0x9ead210f…eb449d | Transfer | 39,048,130 | 9 hrs agoMon, 17 Aug 2026 18:21:35 UTC | 0xcb85…9908 | IN | 0xae18…2a4c | 5 MANCER | Mancer (MANCER) | |
| 0x90c7c6b2…4abad0 | Transfer | 39,041,753 | 9 hrs agoMon, 17 Aug 2026 18:10:56 UTC | 0xae18…2a4c | OUT | 0xc5d0…9249 | $0.0020.676839 HOODBOT | ||
| 0x90c7c6b2…4abad0 | Transfer | 39,041,753 | 9 hrs agoMon, 17 Aug 2026 18:10:56 UTC | 0xae18…2a4c | OUT | 0x6ab8…a152 | $0.0020.676839 HOODBOT | ||
| 0x90c7c6b2…4abad0 | Transfer | 39,041,753 | 9 hrs agoMon, 17 Aug 2026 18:10:56 UTC | 0xae18…2a4c | OUT | 0xbbef…7bb2 | $NaN3,266.940699 HOODBOT | ||
| 0x965b4eb9…c9b43e | Transfer | 39,041,534 | 9 hrs agoMon, 17 Aug 2026 18:10:34 UTC | 0x263c…ed32 | IN | 0xae18…2a4c | $0.01185.129247 HOODBOT | ||
| 0x965b4eb9…c9b43e | Transfer | 39,041,534 | 9 hrs agoMon, 17 Aug 2026 18:10:34 UTC | 0xae18…2a4c | OUT | 0x672e…72b2 | 4.9375 USDG | global dollar (USDG) | |
| 0x965b4eb9…c9b43e | Transfer | 39,041,534 | 9 hrs agoMon, 17 Aug 2026 18:10:34 UTC | 0xae18…2a4c | OUT | 0xc5d0…9249 | 0.0625 USDG | global dollar (USDG) | |
| 0x54189426…b82c4a | Transfer | 39,041,102 | 9 hrs agoMon, 17 Aug 2026 18:09:51 UTC | 0x263c…ed32 | IN | 0xae18…2a4c | $0.01400.623942 HOODBOT | ||
| 0x54189426…b82c4a | Transfer | 39,041,102 | 9 hrs agoMon, 17 Aug 2026 18:09:51 UTC | 0xae18…2a4c | OUT | 0x4236…f575 | 4.9375 sushicat | sushicat (sushicat) | |
| 0x54189426…b82c4a | Transfer | 39,041,102 | 9 hrs agoMon, 17 Aug 2026 18:09:51 UTC | 0xae18…2a4c | OUT | 0xc5d0…9249 | 0.0625 sushicat | sushicat (sushicat) | |
| 0x2ed5380d…909971 | Transfer | 39,040,844 | 9 hrs agoMon, 17 Aug 2026 18:09:25 UTC | 0x263c…ed32 | IN | 0xae18…2a4c | $0.00107.074396 HOODBOT | ||
| 0x2ed5380d…909971 | Transfer | 39,040,844 | 9 hrs agoMon, 17 Aug 2026 18:09:25 UTC | 0xae18…2a4c | OUT | 0x0793…0c9c | 6.9125 PEPE | THE CHOSEN FROG (PEPE) | |
| 0x2ed5380d…909971 | Transfer | 39,040,844 | 9 hrs agoMon, 17 Aug 2026 18:09:25 UTC | 0xae18…2a4c | OUT | 0xc5d0…9249 | 0.0875 PEPE | THE CHOSEN FROG (PEPE) | |
| 0xd57ed50e…9df578 | Transfer | 39,040,545 | 9 hrs agoMon, 17 Aug 2026 18:08:55 UTC | 0x263c…ed32 | IN | 0xae18…2a4c | $0.0056.087644 HOODBOT | ||
| 0xd57ed50e…9df578 | Transfer | 39,040,545 | 9 hrs agoMon, 17 Aug 2026 18:08:55 UTC | 0xae18…2a4c | OUT | 0x1bee…79c2 | 6.9125 ZSWAP | ZygoSwap (ZSWAP) | |
| 0xd57ed50e…9df578 | Transfer | 39,040,545 | 9 hrs agoMon, 17 Aug 2026 18:08:55 UTC | 0xae18…2a4c | OUT | 0xc5d0…9249 | 0.0875 ZSWAP | ZygoSwap (ZSWAP) | |
| 0x6a345e31…891b37 | Transfer | 39,040,315 | 9 hrs agoMon, 17 Aug 2026 18:08:31 UTC | 0x263c…ed32 | IN | 0xae18…2a4c | $0.0056.088025 HOODBOT | ||
| 0x6a345e31…891b37 | Transfer | 39,040,315 | 9 hrs agoMon, 17 Aug 2026 18:08:31 UTC | 0xae18…2a4c | OUT | 0x41ad…2c92 | 6.9125 Hoodcat | Hoodcat (Hoodcat) |
| Type | Age | Block | Details |
|---|---|---|---|
| no cross-chain L1↔L2 transactions for this address | |||
| Block | Age | Parent Transaction Hash | Type | Method | From | To | Value | |
|---|---|---|---|---|---|---|---|---|
| 37,841,800 | 1 day agoSun, 16 Aug 2026 08:44:15 UTC | 0x67dbe6…1e52a8 | CALL | handleOps | 0xae18…2a4c | OUT | 0x8876…0904 | 0.00000 ETH |
| 37,841,800 | 1 day agoSun, 16 Aug 2026 08:44:15 UTC | 0x67dbe6…1e52a8 | CALL | handleOps | 0xae18…2a4c | OUT | 0xc5d0…9249 | 0.00000 ETH |
| 37,841,410 | 1 day agoSun, 16 Aug 2026 08:43:35 UTC | 0x2741aa…51c805 | DELEGATECALL | handleOps | 0xae18…2a4c | OUT | 0x6864…00c2 | 0.00000 ETH |
| 37,841,410 | 1 day agoSun, 16 Aug 2026 08:43:35 UTC | 0x2741aa…51c805 | CALL | handleOps | 0x8876…0904 | IN | 0xae18…2a4c | 0.00000 ETH |
| 37,840,920 | 1 day agoSun, 16 Aug 2026 08:42:46 UTC | 0xedca13…50810f | DELEGATECALL | handleOps | 0xae18…2a4c | OUT | 0x6864…00c2 | 0.00000 ETH |
| 37,840,920 | 1 day agoSun, 16 Aug 2026 08:42:46 UTC | 0xedca13…50810f | CALL | handleOps | 0x8876…0904 | IN | 0xae18…2a4c | 0.00000 ETH |
| 37,840,507 | 1 day agoSun, 16 Aug 2026 08:42:05 UTC | 0x349956…e940f6 | DELEGATECALL | handleOps | 0xae18…2a4c | OUT | 0x6864…00c2 | 0.00000 ETH |
| 37,840,507 | 1 day agoSun, 16 Aug 2026 08:42:05 UTC | 0x349956…e940f6 | CALL | handleOps | 0x8366…0951 | IN | 0xae18…2a4c | 0.00000 ETH |
| 37,840,420 | 1 day agoSun, 16 Aug 2026 08:41:57 UTC | 0x672296…faf9b5 | DELEGATECALL | handleOps | 0xae18…2a4c | OUT | 0x6864…00c2 | 0.00000 ETH |
| 37,840,420 | 1 day agoSun, 16 Aug 2026 08:41:57 UTC | 0x672296…faf9b5 | CALL | handleOps | 0x8876…0904 | IN | 0xae18…2a4c | 0.00000 ETH |
| 37,235,389 | 2 days agoSat, 15 Aug 2026 15:50:17 UTC | 0x1ff6df…520187 | CALL | handleOps | 0xae18…2a4c | OUT | 0x8876…0904 | 0.00003 ETH |
| 37,235,389 | 2 days agoSat, 15 Aug 2026 15:50:17 UTC | 0x1ff6df…520187 | CALL | handleOps | 0xae18…2a4c | OUT | 0xc5d0…9249 | 0.00000 ETH |
| 37,229,541 | 2 days agoSat, 15 Aug 2026 15:40:31 UTC | 0xc40881…173de3 | DELEGATECALL | handleOps | 0xae18…2a4c | OUT | 0x6864…00c2 | 0.00000 ETH |
| 37,229,541 | 2 days agoSat, 15 Aug 2026 15:40:31 UTC | 0xc40881…173de3 | CALL | handleOps | 0x8876…0904 | IN | 0xae18…2a4c | 0.00000 ETH |
| 37,224,246 | 2 days agoSat, 15 Aug 2026 15:31:41 UTC | 0x98c8a9…7d8975 | DELEGATECALL | handleOps | 0xae18…2a4c | OUT | 0x6864…00c2 | 0.00001 ETH |
| 37,224,246 | 2 days agoSat, 15 Aug 2026 15:31:41 UTC | 0x98c8a9…7d8975 | CALL | handleOps | 0x8876…0904 | IN | 0xae18…2a4c | 0.00001 ETH |
| 37,223,940 | 2 days agoSat, 15 Aug 2026 15:31:10 UTC | 0xf74a82…b5e8f0 | DELEGATECALL | handleOps | 0xae18…2a4c | OUT | 0x6864…00c2 | 0.00001 ETH |
| 37,223,940 | 2 days agoSat, 15 Aug 2026 15:31:10 UTC | 0xf74a82…b5e8f0 | CALL | handleOps | 0x8876…0904 | IN | 0xae18…2a4c | 0.00001 ETH |
| 35,284,871 | 4 days agoThu, 13 Aug 2026 09:31:48 UTC | 0x069b52…5e6f1f | CALL | handleOps | 0xae18…2a4c | OUT | 0x8876…0904 | 0.00001 ETH |
| 35,284,871 | 4 days agoThu, 13 Aug 2026 09:31:48 UTC | 0x069b52…5e6f1f | CALL | handleOps | 0xae18…2a4c | OUT | 0xc5d0…9249 | 0.00000 ETH |
| 35,284,442 | 4 days agoThu, 13 Aug 2026 09:31:05 UTC | 0xf12b7c…1361a7 | DELEGATECALL | handleOps | 0xae18…2a4c | OUT | 0x6864…00c2 | 0.00000 ETH |
| 35,284,442 | 4 days agoThu, 13 Aug 2026 09:31:05 UTC | 0xf12b7c…1361a7 | CALL | handleOps | 0x8876…0904 | IN | 0xae18…2a4c | 0.00000 ETH |
| 35,284,161 | 4 days agoThu, 13 Aug 2026 09:30:37 UTC | 0x87e1a1…cc1f54 | DELEGATECALL | handleOps | 0xae18…2a4c | OUT | 0x6864…00c2 | 0.00000 ETH |
| 35,284,161 | 4 days agoThu, 13 Aug 2026 09:30:37 UTC | 0x87e1a1…cc1f54 | CALL | handleOps | 0x8876…0904 | IN | 0xae18…2a4c | 0.00000 ETH |
| 35,283,883 | 4 days agoThu, 13 Aug 2026 09:30:09 UTC | 0xb06e64…682fa4 | DELEGATECALL | handleOps | 0xae18…2a4c | OUT | 0x6864…00c2 | 0.00000 ETH |