| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
WETH (WETH) | WETH | 0.488322 | $1,878.16 | $917.15 |
| DIH | 1 | $0.0000106 | $0 | |
| Wrapped BTC (WBTC) | WBTC | 1 | — | — |
// 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": "BagsFeeShare_AlreadyInitialized",
"type": "error",
"inputs": []
},
{
"name": "BagsFeeShare_BondingCurveAlreadySet",
"type": "error",
"inputs": []
},
{
"name": "BagsFeeShare_BpsSumInvalid",
"type": "error",
"inputs": [
{
"name": "sum",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "BagsFeeShare_ClaimerHasUnpaid",
"type": "error",
"inputs": [
{
"name": "claimer",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "BagsFeeShare_DuplicateClaimer",
"type": "error",
"inputs": [
{
"name": "claimer",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "BagsFeeShare_LenMismatch",
"type": "error",
"inputs": [
{
"name": "claimersLength",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "bpsLength",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "BagsFeeShare_NoClaimers",
"type": "error",
"inputs": []
},
{
"name": "BagsFeeShare_NoPartner",
"type": "error",
"inputs": []
},
{
"name": "BagsFeeShare_NotAuthorized",
"type": "error",
"inputs": [
{
"name": "caller",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "BagsFeeShare_NothingToClaim",
"type": "error",
"inputs": []
},
{
"name": "BagsFeeShare_PartnerIsClaimer",
"type": "error",
"inputs": []
},
{
"name": "BagsFeeShare_SendFailed",
"type": "error",
"inputs": [
{
"name": "to",
"type": "address",
"internalType": "address"
},
{
"name": "amount",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "BagsFeeShare_TooManyClaimers",
"type": "error",
"inputs": [
{
"name": "length",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "max",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "BagsFeeShare_ZeroBondingCurve",
"type": "error",
"inputs": []
},
{
"name": "BagsFeeShare_ZeroClaimer",
"type": "error",
"inputs": []
},
{
"name": "BagsFeeShare_ZeroHook",
"type": "error",
"inputs": []
},
{
"name": "BagsFeeShare_ZeroWETH",
"type": "error",
"inputs": []
},
{
"name": "InvalidInitialization",
"type": "error",
"inputs": []
},
{
"name": "NotInitializing",
"type": "error",
"inputs": []
},
{
"name": "OwnableInvalidOwner",
"type": "error",
"inputs": [
{
"name": "owner",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "OwnableUnauthorizedAccount",
"type": "error",
"inputs": [
{
"name": "account",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ReentrancyGuardReentrantCall",
"type": "error",
"inputs": []
},
{
"name": "SafeERC20FailedOperation",
"type": "error",
"inputs": [
{
"name": "token",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "BondingCurveSet",
"type": "event",
"inputs": [
{
"name": "bondingCurve",
"type": "address",
"indexed": false,
"internalType": "address"
}
],
"anonymous": false
},
{
"name": "Claimed",
"type": "event",
"inputs": [
{
"name": "user",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "amount",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
},
{
"name": "unwrap",
"type": "bool",
"indexed": false,
"internalType": "bool"
}
],
"anonymous": false
},
{
"name": "ClaimersUpdated",
"type": "event",
"inputs": [
{
"name": "claimers",
"type": "address[]",
"indexed": false,
"internalType": "address[]"
},
{
"name": "bps",
"type": "uint16[]",
"indexed": false,
"internalType": "uint16[]"
}
],
"anonymous": false
},
{
"name": "FeeNotified",
"type": "event",
"inputs": [
{
"name": "amount",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "Initialized",
"type": "event",
"inputs": [
{
"name": "version",
"type": "uint64",
"indexed": false,
"internalType": "uint64"
}
],
"anonymous": false
},
{
"name": "OwnershipTransferred",
"type": "event",
"inputs": [
{
"name": "previousOwner",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "newOwner",
"type": "address",
"indexed": true,
"internalType": "address"
}
],
"anonymous": false
},
{
"name": "PartnerFeeNotified",
"type": "event",
"inputs": [
{
"name": "amount",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "SweepFailed",
"type": "event",
"inputs": [
{
"name": "hook",
"type": "address",
"indexed": true,
"internalType": "address"
}
],
"anonymous": false
},
{
"name": "PARTNER",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "WETH",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "bondingCurve",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "claim",
"type": "function",
"inputs": [
{
"name": "unwrap",
"type": "bool",
"internalType": "bool"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "claimable",
"type": "function",
"inputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "claimerBps",
"type": "function",
"inputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "uint16",
"internalType": "uint16"
}
],
"stateMutability": "view"
},
{
"name": "claimers",
"type": "function",
"inputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "getClaimers",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "addrs",
"type": "address[]",
"internalType": "address[]"
},
{
"name": "bps",
"type": "uint16[]",
"internalType": "uint16[]"
}
],
"stateMutability": "view"
},
{
"name": "hook",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "initialize",
"type": "function",
"inputs": [
{
"name": "_weth",
"type": "address",
"internalType": "address"
},
{
"name": "admin",
"type": "address",
"internalType": "address"
},
{
"name": "_partner",
"type": "address",
"internalType": "address"
},
{
"name": "_claimers",
"type": "address[]",
"internalType": "address[]"
},
{
"name": "_bps",
"type": "uint16[]",
"internalType": "uint16[]"
},
{
"name": "hook_",
"type": "address",
"internalType": "address"
},
{
"name": "poolId_",
"type": "bytes32",
"internalType": "PoolId"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "notifyFee",
"type": "function",
"inputs": [
{
"name": "amount",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "notifyPartnerFee",
"type": "function",
"inputs": [
{
"name": "amount",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "owner",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "poolId",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "bytes32",
"internalType": "PoolId"
}
],
"stateMutability": "view"
},
{
"name": "renounceOwnership",
"type": "function",
"inputs": [],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "setBondingCurve",
"type": "function",
"inputs": [
{
"name": "_bondingCurve",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "setClaimers",
"type": "function",
"inputs": [
{
"name": "_claimers",
"type": "address[]",
"internalType": "address[]"
},
{
"name": "_bps",
"type": "uint16[]",
"internalType": "uint16[]"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "transferOwnership",
"type": "function",
"inputs": [
{
"name": "newOwner",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"type": "receive",
"stateMutability": "payable"
}
]0x60806040819052635c60da1b60e01b81526020906004817f000000000000000000000000dff07d39c5332c602e06fa64f0a97c92fd8537e06001600160a01b03165afa801560a2575f901560d1575060203d602011609c575b601f19601f820116608001906080821067ffffffffffffffff83111760885760849160405260800160ad565b60d1565b634e487b7160e01b5f52604160045260245ffd5b503d6058565b6040513d5f823e3d90fd5b602090607f19011260cd576080516001600160a01b038116810360cd5790565b5f80fd5b5f8091368280378136915af43d5f803e1560e9573d5ff35b3d5ffdfea26469706673582212205f87a11aef2d05829cba3b08c4a4247afd1a62e1e380ab0a0bc1efe024f1195164736f6c634300081a0033
| Type | Age | Block | Details |
|---|---|---|---|
| no cross-chain L1↔L2 transactions for this address | |||
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0x413455…d1a987 | 7 days agoSat, 08 Aug 2026 14:24:36 UTC | 0xfa8256…2dcc | [0] 0x000000000000…02417ea4 data: 0x000000000000000000…00000001 |
| 0xf62f4e…414ae6 | 21 days agoSat, 25 Jul 2026 03:16:09 UTC | 0x20a0f3…6464 | data: 0x000000000000000000…3b81b696 |
| 0xf62f4e…414ae6 | 21 days agoSat, 25 Jul 2026 03:16:09 UTC | 0xb302de…76a1 | data: 0x000000000000000000…ee06da5b |
| 0xc2a4cf…c4cd1a | 21 days agoSat, 25 Jul 2026 03:16:09 UTC | 0x20a0f3…6464 | data: 0x000000000000000000…d0928921 |
| 0xc2a4cf…c4cd1a | 21 days agoSat, 25 Jul 2026 03:16:09 UTC | 0xb302de…76a1 | data: 0x000000000000000000…424a2485 |
| 0xab8a9c…96091b | 21 days agoSat, 25 Jul 2026 03:16:09 UTC | 0x20a0f3…6464 | data: 0x000000000000000000…10df3181 |
| 0xab8a9c…96091b | 21 days agoSat, 25 Jul 2026 03:16:09 UTC | 0xb302de…76a1 | data: 0x000000000000000000…437cc605 |
| 0xc5836b…2c6ec3 | 21 days agoSat, 25 Jul 2026 03:16:09 UTC | 0x20a0f3…6464 | data: 0x000000000000000000…e88a0fff |
| 0xc5836b…2c6ec3 | 21 days agoSat, 25 Jul 2026 03:16:09 UTC | 0xb302de…76a1 | data: 0x000000000000000000…a2283fff |
| 0x55a5b8…6eab21 | 22 days agoFri, 24 Jul 2026 14:51:47 UTC | 0x20a0f3…6464 | data: 0x000000000000000000…3c17e780 |
| 0x55a5b8…6eab21 | 22 days agoFri, 24 Jul 2026 14:51:47 UTC | 0xb302de…76a1 | data: 0x000000000000000000…f05f9e01 |
| 0x8f50df…95dbae | 25 days agoTue, 21 Jul 2026 21:07:19 UTC | 0x20a0f3…6464 | data: 0x000000000000000000…9af564b5 |
| 0x8f50df…95dbae | 25 days agoTue, 21 Jul 2026 21:07:19 UTC | 0xb302de…76a1 | data: 0x000000000000000000…6bd592d5 |
| 0xce0110…7d7f35 | 25 days agoTue, 21 Jul 2026 21:07:19 UTC | 0x20a0f3…6464 | data: 0x000000000000000000…6f6e747b |
| 0xce0110…7d7f35 | 25 days agoTue, 21 Jul 2026 21:07:19 UTC | 0xb302de…76a1 | data: 0x000000000000000000…bdb9d1f0 |
| 0xb7dc24…08a39e | 25 days agoTue, 21 Jul 2026 21:07:19 UTC | 0x20a0f3…6464 | data: 0x000000000000000000…583f3843 |
| 0xb7dc24…08a39e | 25 days agoTue, 21 Jul 2026 21:07:19 UTC | 0xb302de…76a1 | data: 0x000000000000000000…60fce10e |
| 0xee78b5…5d5384 | 27 days agoSun, 19 Jul 2026 23:16:50 UTC | 0x20a0f3…6464 | data: 0x000000000000000000…562ec0ac |
| 0xee78b5…5d5384 | 27 days agoSun, 19 Jul 2026 23:16:50 UTC | 0xb302de…76a1 | data: 0x000000000000000000…58bb02b4 |
| 0xa4bbb6…952bf5 | 27 days agoSun, 19 Jul 2026 23:10:54 UTC | 0x20a0f3…6464 | data: 0x000000000000000000…fd3b5b26 |
| 0xa4bbb6…952bf5 | 27 days agoSun, 19 Jul 2026 23:10:54 UTC | 0xb302de…76a1 | data: 0x000000000000000000…f4ed6c9c |
| 0x8a9c0c…dd6c5d | 27 days agoSun, 19 Jul 2026 23:10:54 UTC | 0x20a0f3…6464 | data: 0x000000000000000000…e82f5da2 |
| 0x8a9c0c…dd6c5d | 27 days agoSun, 19 Jul 2026 23:10:54 UTC | 0xb302de…76a1 | data: 0x000000000000000000…a0bd768b |
| 0x758a9d…8549d1 | 27 days agoSun, 19 Jul 2026 23:10:54 UTC | 0x20a0f3…6464 | data: 0x000000000000000000…c6934eee |
| 0x758a9d…8549d1 | 27 days agoSun, 19 Jul 2026 23:10:54 UTC | 0xb302de…76a1 | data: 0x000000000000000000…1a4d3bbc |
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x413455…d1a987 | claim | 31,142,982 | 7 days agoSat, 08 Aug 2026 14:24:36 UTC | 0x7bef…7ea4 | IN | BagsFeeShare | $0.000 ETH | 0.00000240 | |
| 0x96e9a1…0c7cd8 | claim | 13,351,465 | 28 days agoSat, 18 Jul 2026 22:49:11 UTC | 0x7bef…7ea4 | IN | BagsFeeShare | $0.000 ETH | 0.00000551 | |
| 0x442eea…d7521a | claim | 11,493,669 | 30 days agoThu, 16 Jul 2026 19:02:52 UTC | 0x7bef…7ea4 | IN | BagsFeeShare | $0.000 ETH | 0.00000618 | |
| 0x45d350…98eb2c | claim | 10,352,193 | 31 days agoWed, 15 Jul 2026 11:20:31 UTC | 0x7bef…7ea4 | IN | BagsFeeShare | $0.000 ETH | 0.00000479 | |
| 0x505acd…9e1607 | claim | 9,853,586 | 32 days agoTue, 14 Jul 2026 21:29:04 UTC | 0x7bef…7ea4 | IN | BagsFeeShare | $0.000 ETH | 0.00000457 | |
| 0x0580eb…630aca | claim | 9,637,572 | 32 days agoTue, 14 Jul 2026 15:28:51 UTC | 0x7bef…7ea4 | IN | BagsFeeShare | $0.000 ETH | 0.00000395 |
| Block | Age | Parent Transaction Hash | Type | Method | From | To | Value | |
|---|---|---|---|---|---|---|---|---|
| 31,142,982 | 7 days agoSat, 08 Aug 2026 14:24:36 UTC | 0x413455…d1a987 | CALL | claim | 0x33ce…93bd | OUT | 0x7bef…7ea4 | 0.01913 ETH |
| 31,142,982 | 7 days agoSat, 08 Aug 2026 14:24:36 UTC | 0x413455…d1a987 | DELEGATECALL | claim | 0x33ce…93bd | OUT | 0xd169…8a1a | 0.01913 ETH |
| 31,142,982 | 7 days agoSat, 08 Aug 2026 14:24:36 UTC | 0x413455…d1a987 | CALL | claim | 0x0bd7…ad73 | IN | 0x33ce…93bd | 0.01913 ETH |
| 13,351,465 | 28 days agoSat, 18 Jul 2026 22:49:11 UTC | 0x96e9a1…0c7cd8 | CALL | claim | 0x33ce…93bd | OUT | 0x7bef…7ea4 | 0.00664 ETH |
| 13,351,465 | 28 days agoSat, 18 Jul 2026 22:49:11 UTC | 0x96e9a1…0c7cd8 | DELEGATECALL | claim | 0x33ce…93bd | OUT | 0xd169…8a1a | 0.00664 ETH |
| 13,351,465 | 28 days agoSat, 18 Jul 2026 22:49:11 UTC | 0x96e9a1…0c7cd8 | CALL | claim | 0x0bd7…ad73 | IN | 0x33ce…93bd | 0.00664 ETH |
| 11,493,669 | 30 days agoThu, 16 Jul 2026 19:02:52 UTC | 0x442eea…d7521a | CALL | claim | 0x33ce…93bd | OUT | 0x7bef…7ea4 | 0.00083 ETH |
| 11,493,669 | 30 days agoThu, 16 Jul 2026 19:02:52 UTC | 0x442eea…d7521a | DELEGATECALL | claim | 0x33ce…93bd | OUT | 0xd169…8a1a | 0.00083 ETH |
| 11,493,669 | 30 days agoThu, 16 Jul 2026 19:02:52 UTC | 0x442eea…d7521a | CALL | claim | 0x0bd7…ad73 | IN | 0x33ce…93bd | 0.00083 ETH |
| 10,352,193 | 31 days agoWed, 15 Jul 2026 11:20:31 UTC | 0x45d350…98eb2c | CALL | claim | 0x33ce…93bd | OUT | 0x7bef…7ea4 | 0.00072 ETH |
| 10,352,193 | 31 days agoWed, 15 Jul 2026 11:20:31 UTC | 0x45d350…98eb2c | DELEGATECALL | claim | 0x33ce…93bd | OUT | 0xd169…8a1a | 0.00072 ETH |
| 10,352,193 | 31 days agoWed, 15 Jul 2026 11:20:31 UTC | 0x45d350…98eb2c | CALL | claim | 0x0bd7…ad73 | IN | 0x33ce…93bd | 0.00072 ETH |
| 9,853,586 | 32 days agoTue, 14 Jul 2026 21:29:04 UTC | 0x505acd…9e1607 | CALL | claim | 0x33ce…93bd | OUT | 0x7bef…7ea4 | 0.00009 ETH |
| 9,853,586 | 32 days agoTue, 14 Jul 2026 21:29:04 UTC | 0x505acd…9e1607 | DELEGATECALL | claim | 0x33ce…93bd | OUT | 0xd169…8a1a | 0.00009 ETH |
| 9,853,586 | 32 days agoTue, 14 Jul 2026 21:29:04 UTC | 0x505acd…9e1607 | CALL | claim | 0x0bd7…ad73 | IN | 0x33ce…93bd | 0.00009 ETH |
| 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 | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x41345520…d1a987 | Transfer | 31,142,982 | 7 days agoSat, 08 Aug 2026 14:24:36 UTC | 0x33ce…93bd | OUT | 0x0000…0000 | 0.019131 WETH | WETH (WETH) | |
| 0xec29c799…ca536e | Transfer | 27,740,436 | 11 days agoTue, 04 Aug 2026 15:42:26 UTC | 0xd2e4…b70c | IN | 0x33ce…93bd | 1 WBTC | Wrapped BTC (WBTC) | |
| 0xf62f4e9e…414ae6 | Transfer | 18,680,158 | 21 days agoSat, 25 Jul 2026 03:16:09 UTC | 0xa197…b4ad | IN | 0x33ce…93bd | 0.000198 WETH | WETH (WETH) | |
| 0xc2a4cf50…c4cd1a | Transfer | 18,680,158 | 21 days agoSat, 25 Jul 2026 03:16:09 UTC | 0xa197…b4ad | IN | 0x33ce…93bd | 0.000216 WETH | WETH (WETH) | |
| 0xab8a9ca7…96091b | Transfer | 18,680,158 | 21 days agoSat, 25 Jul 2026 03:16:09 UTC | 0xa197…b4ad | IN | 0x33ce…93bd | 0.000214 WETH | WETH (WETH) | |
| 0xc5836bf0…2c6ec3 | Transfer | 18,680,158 | 21 days agoSat, 25 Jul 2026 03:16:09 UTC | 0xa197…b4ad | IN | 0x33ce…93bd | 0.000235 WETH | WETH (WETH) | |
| 0xc89218a6…3bd52f | Transfer | 18,512,216 | 22 days agoFri, 24 Jul 2026 22:35:20 UTC | 0xcaf7…5d11 | IN | 0x33ce…93bd | $0.001 DIH | ||
| 0x55a5b846…6eab21 | Transfer | 18,234,520 | 22 days agoFri, 24 Jul 2026 14:51:47 UTC | 0xa197…b4ad | IN | 0x33ce…93bd | 0.000881 WETH | WETH (WETH) | |
| 0x8f50df1c…95dbae | Transfer | 15,873,906 | 25 days agoTue, 21 Jul 2026 21:07:19 UTC | 0xa197…b4ad | IN | 0x33ce…93bd | 0.000582 WETH | WETH (WETH) | |
| 0xce01106a…7d7f35 | Transfer | 15,873,906 | 25 days agoTue, 21 Jul 2026 21:07:19 UTC | 0xa197…b4ad | IN | 0x33ce…93bd | 0.000679 WETH | WETH (WETH) | |
| 0xb7dc2489…08a39e | Transfer | 15,873,906 | 25 days agoTue, 21 Jul 2026 21:07:19 UTC | 0xa197…b4ad | IN | 0x33ce…93bd | 0.000804 WETH | WETH (WETH) | |
| 0xee78b535…5d5384 | Transfer | 14,228,123 | 27 days agoSun, 19 Jul 2026 23:16:50 UTC | 0xa197…b4ad | IN | 0x33ce…93bd | 0.000015 WETH | WETH (WETH) | |
| 0xa4bbb6ca…952bf5 | Transfer | 14,224,581 | 27 days agoSun, 19 Jul 2026 23:10:54 UTC | 0xa197…b4ad | IN | 0x33ce…93bd | 0.000330 WETH | WETH (WETH) | |
| 0x8a9c0cbb…dd6c5d | Transfer | 14,224,581 | 27 days agoSun, 19 Jul 2026 23:10:54 UTC | 0xa197…b4ad | IN | 0x33ce…93bd | 0.000356 WETH | WETH (WETH) | |
| 0x758a9d04…8549d1 | Transfer | 14,224,581 | 27 days agoSun, 19 Jul 2026 23:10:54 UTC | 0xa197…b4ad | IN | 0x33ce…93bd | 0.000310 WETH | WETH (WETH) | |
| 0xcc58230f…920f97 | Transfer | 14,224,581 | 27 days agoSun, 19 Jul 2026 23:10:54 UTC | 0xa197…b4ad | IN | 0x33ce…93bd | 0.000358 WETH | WETH (WETH) | |
| 0x2302ce6f…3a5eff | Transfer | 14,224,575 | 27 days agoSun, 19 Jul 2026 23:10:53 UTC | 0xa197…b4ad | IN | 0x33ce…93bd | 0.000377 WETH | WETH (WETH) | |
| 0x890c7327…52a627 | Transfer | 14,224,575 | 27 days agoSun, 19 Jul 2026 23:10:53 UTC | 0xa197…b4ad | IN | 0x33ce…93bd | 0.000408 WETH | WETH (WETH) | |
| 0xd722b0c6…9efd43 | Transfer | 14,224,575 | 27 days agoSun, 19 Jul 2026 23:10:53 UTC | 0xa197…b4ad | IN | 0x33ce…93bd | 0.000398 WETH | WETH (WETH) | |
| 0x9fa895d6…5ae7e1 | Transfer | 14,224,575 | 27 days agoSun, 19 Jul 2026 23:10:53 UTC | 0xa197…b4ad | IN | 0x33ce…93bd | 0.000369 WETH | WETH (WETH) | |
| 0x17eacbb5…6fa1bd | Transfer | 14,224,306 | 27 days agoSun, 19 Jul 2026 23:10:26 UTC | 0xa197…b4ad | IN | 0x33ce…93bd | 0.001531 WETH | WETH (WETH) | |
| 0x18cf4881…171fab | Transfer | 14,224,306 | 27 days agoSun, 19 Jul 2026 23:10:26 UTC | 0xa197…b4ad | IN | 0x33ce…93bd | 0.001796 WETH | WETH (WETH) | |
| 0x3b9b3261…ef4c27 | Transfer | 14,223,620 | 27 days agoSun, 19 Jul 2026 23:09:17 UTC | 0xa197…b4ad | IN | 0x33ce…93bd | 0.000006 WETH | WETH (WETH) | |
| 0x4d81fa51…207a75 | Transfer | 14,223,619 | 27 days agoSun, 19 Jul 2026 23:09:17 UTC | 0xa197…b4ad | IN | 0x33ce…93bd | 0.000006 WETH | WETH (WETH) | |
| 0x23ba473a…b4f62a | Transfer | 14,223,609 | 27 days agoSun, 19 Jul 2026 23:09:16 UTC | 0xa197…b4ad | IN | 0x33ce…93bd | 0.000006 WETH | WETH (WETH) |