// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
contract SimpleP3 {
bytes32 private constant _OWNER_SLOT =
0xa7b53796fd2d99cb1f5ae019b54f9e024446c3d12b483f733ccc62ed04eb126a;
bytes32 private constant _IMPL_SLOT =
0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
event ImplementationSet(address indexed implementation);
event OwnershipRenounced();
modifier onlyOwner() {
require(_getOwner() == msg.sender, "Not owner");
_;
}
constructor() {
_setOwner(msg.sender);
}
function owner() public view returns (address) {
return _getOwner();
}
function implementation() public view returns (address) {
return _getImpl();
}
function setImplementation(address _implementation) external onlyOwner {
require(_implementation != address(0), "Zero address");
require(_getImpl() == address(0), "Already set");
_setImpl(_implementation);
emit ImplementationSet(_implementation);
}
function renounceOwnership() external onlyOwner {
_setOwner(address(0));
emit OwnershipRenounced();
}
function _getOwner() internal view returns (address o) {
bytes32 slot = _OWNER_SLOT;
assembly { o := sload(slot) }
}
function _setOwner(address o) internal {
bytes32 slot = _OWNER_SLOT;
assembly { sstore(slot, o) }
}
function _getImpl() internal view returns (address o) {
bytes32 slot = _IMPL_SLOT;
assembly { o := sload(slot) }
}
function _setImpl(address o) internal {
bytes32 slot = _IMPL_SLOT;
assembly { sstore(slot, o) }
}
fallback() external payable {
address impl = _getImpl();
require(impl != address(0), "Implementation not set");
assembly {
calldatacopy(0, 0, calldatasize())
let result := delegatecall(gas(), impl, 0, calldatasize(), 0, 0)
returndatacopy(0, 0, returndatasize())
switch result
case 0 { revert(0, returndatasize()) }
default { return(0, returndatasize()) }
}
}
receive() external payable {
address impl = _getImpl();
require(impl != address(0), "Implementation not set");
assembly {
calldatacopy(0, 0, calldatasize())
let result := delegatecall(gas(), impl, 0, calldatasize(), 0, 0)
returndatacopy(0, 0, returndatasize())
switch result
case 0 { revert(0, returndatasize()) }
default { return(0, returndatasize()) }
}
}
}[
{
"type": "constructor",
"inputs": [],
"stateMutability": "nonpayable"
},
{
"name": "ImplementationSet",
"type": "event",
"inputs": [
{
"name": "implementation",
"type": "address",
"indexed": true,
"internalType": "address"
}
],
"anonymous": false
},
{
"name": "OwnershipRenounced",
"type": "event",
"inputs": [],
"anonymous": false
},
{
"type": "fallback",
"stateMutability": "payable"
},
{
"name": "implementation",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "owner",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "renounceOwnership",
"type": "function",
"inputs": [],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "setImplementation",
"type": "function",
"inputs": [
{
"name": "_implementation",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"type": "receive",
"stateMutability": "payable"
}
]0x608060405234801561000f575f80fd5b5061001f3361002460201b60201c565b610051565b5f7fa7b53796fd2d99cb1f5ae019b54f9e024446c3d12b483f733ccc62ed04eb126a5f1b90508181555050565b6107c78061005e5f395ff3fe608060405260043610610042575f3560e01c80635c60da1b14610177578063715018a6146101a15780638da5cb5b146101b7578063d784d426146101e1576100df565b366100df575f610050610209565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036100c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100b79061058a565b60405180910390fd5b365f80375f80365f845af43d5f803e805f81146100db573d5ff35b3d5ffd5b5f6100e8610209565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161014f9061058a565b60405180910390fd5b365f80375f80365f845af43d5f803e805f8114610173573d5ff35b3d5ffd5b348015610182575f80fd5b5061018b610238565b60405161019891906105e7565b60405180910390f35b3480156101ac575f80fd5b506101b5610246565b005b3480156101c2575f80fd5b506101cb6102f2565b6040516101d891906105e7565b60405180910390f35b3480156101ec575f80fd5b506102076004803603810190610202919061062e565b610300565b005b5f807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5f1b9050805491505090565b5f610241610209565b905090565b3373ffffffffffffffffffffffffffffffffffffffff166102656104a7565b73ffffffffffffffffffffffffffffffffffffffff16146102bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102b2906106a3565b60405180910390fd5b6102c45f6104d6565b7fd1f66c3d2bc1993a86be5e3d33709d98f0442381befcedd29f578b9b2506b1ce60405160405180910390a1565b5f6102fb6104a7565b905090565b3373ffffffffffffffffffffffffffffffffffffffff1661031f6104a7565b73ffffffffffffffffffffffffffffffffffffffff1614610375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161036c906106a3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036103e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103da9061070b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff16610402610209565b73ffffffffffffffffffffffffffffffffffffffff1614610458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161044f90610773565b60405180910390fd5b61046181610503565b8073ffffffffffffffffffffffffffffffffffffffff167fab64f92ab780ecbf4f3866f57cee465ff36c89450dcce20237ca7a8d81fb7d1360405160405180910390a250565b5f807fa7b53796fd2d99cb1f5ae019b54f9e024446c3d12b483f733ccc62ed04eb126a5f1b9050805491505090565b5f7fa7b53796fd2d99cb1f5ae019b54f9e024446c3d12b483f733ccc62ed04eb126a5f1b90508181555050565b5f7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5f1b90508181555050565b5f82825260208201905092915050565b7f496d706c656d656e746174696f6e206e6f7420736574000000000000000000005f82015250565b5f610574601683610530565b915061057f82610540565b602082019050919050565b5f6020820190508181035f8301526105a181610568565b9050919050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6105d1826105a8565b9050919050565b6105e1816105c7565b82525050565b5f6020820190506105fa5f8301846105d8565b92915050565b5f80fd5b61060d816105c7565b8114610617575f80fd5b50565b5f8135905061062881610604565b92915050565b5f6020828403121561064357610642610600565b5b5f6106508482850161061a565b91505092915050565b7f4e6f74206f776e657200000000000000000000000000000000000000000000005f82015250565b5f61068d600983610530565b915061069882610659565b602082019050919050565b5f6020820190508181035f8301526106ba81610681565b9050919050565b7f5a65726f206164647265737300000000000000000000000000000000000000005f82015250565b5f6106f5600c83610530565b9150610700826106c1565b602082019050919050565b5f6020820190508181035f830152610722816106e9565b9050919050565b7f416c7265616479207365740000000000000000000000000000000000000000005f82015250565b5f61075d600b83610530565b915061076882610729565b602082019050919050565b5f6020820190508181035f83015261078a81610751565b905091905056fea264697066735822122071a314cc233cacccf1184da6ea7a0aeca3c146d94db639319e3928bfc219ceed64736f6c63430008140033
0x608060405260043610610042575f3560e01c80635c60da1b14610177578063715018a6146101a15780638da5cb5b146101b7578063d784d426146101e1576100df565b366100df575f610050610209565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036100c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100b79061058a565b60405180910390fd5b365f80375f80365f845af43d5f803e805f81146100db573d5ff35b3d5ffd5b5f6100e8610209565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161014f9061058a565b60405180910390fd5b365f80375f80365f845af43d5f803e805f8114610173573d5ff35b3d5ffd5b348015610182575f80fd5b5061018b610238565b60405161019891906105e7565b60405180910390f35b3480156101ac575f80fd5b506101b5610246565b005b3480156101c2575f80fd5b506101cb6102f2565b6040516101d891906105e7565b60405180910390f35b3480156101ec575f80fd5b506102076004803603810190610202919061062e565b610300565b005b5f807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5f1b9050805491505090565b5f610241610209565b905090565b3373ffffffffffffffffffffffffffffffffffffffff166102656104a7565b73ffffffffffffffffffffffffffffffffffffffff16146102bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102b2906106a3565b60405180910390fd5b6102c45f6104d6565b7fd1f66c3d2bc1993a86be5e3d33709d98f0442381befcedd29f578b9b2506b1ce60405160405180910390a1565b5f6102fb6104a7565b905090565b3373ffffffffffffffffffffffffffffffffffffffff1661031f6104a7565b73ffffffffffffffffffffffffffffffffffffffff1614610375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161036c906106a3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036103e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103da9061070b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff16610402610209565b73ffffffffffffffffffffffffffffffffffffffff1614610458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161044f90610773565b60405180910390fd5b61046181610503565b8073ffffffffffffffffffffffffffffffffffffffff167fab64f92ab780ecbf4f3866f57cee465ff36c89450dcce20237ca7a8d81fb7d1360405160405180910390a250565b5f807fa7b53796fd2d99cb1f5ae019b54f9e024446c3d12b483f733ccc62ed04eb126a5f1b9050805491505090565b5f7fa7b53796fd2d99cb1f5ae019b54f9e024446c3d12b483f733ccc62ed04eb126a5f1b90508181555050565b5f7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5f1b90508181555050565b5f82825260208201905092915050565b7f496d706c656d656e746174696f6e206e6f7420736574000000000000000000005f82015250565b5f610574601683610530565b915061057f82610540565b602082019050919050565b5f6020820190508181035f8301526105a181610568565b9050919050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6105d1826105a8565b9050919050565b6105e1816105c7565b82525050565b5f6020820190506105fa5f8301846105d8565b92915050565b5f80fd5b61060d816105c7565b8114610617575f80fd5b50565b5f8135905061062881610604565b92915050565b5f6020828403121561064357610642610600565b5b5f6106508482850161061a565b91505092915050565b7f4e6f74206f776e657200000000000000000000000000000000000000000000005f82015250565b5f61068d600983610530565b915061069882610659565b602082019050919050565b5f6020820190508181035f8301526106ba81610681565b9050919050565b7f5a65726f206164647265737300000000000000000000000000000000000000005f82015250565b5f6106f5600c83610530565b9150610700826106c1565b602082019050919050565b5f6020820190508181035f830152610722816106e9565b9050919050565b7f416c7265616479207365740000000000000000000000000000000000000000005f82015250565b5f61075d600b83610530565b915061076882610729565b602082019050919050565b5f6020820190508181035f83015261078a81610751565b905091905056fea264697066735822122071a314cc233cacccf1184da6ea7a0aeca3c146d94db639319e3928bfc219ceed64736f6c63430008140033
| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| DIH | 1 | $0.00000974 | $0 |
| Type | Age | Block | Details |
|---|---|---|---|
| no cross-chain L1↔L2 transactions for this address | |||
| Transaction Hash | Method | Block | Age | From | To | Amount | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x74f85368…969ebc | Transfer | 19,756,902 | 29 days agoSun, 26 Jul 2026 09:18:11 UTC | 0xcaf7…5d11 | IN | 0xb164…28a5 | $0.001 DIH |
| Transaction Hash | Method | Block | Age | From | To | Type | Item | ||
|---|---|---|---|---|---|---|---|---|---|
| no NFT transfers for this address yet | |||||||||
| 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 | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x9b1bac…36ad68 | Approve | 29,874,828 | 17 days agoFri, 07 Aug 2026 03:06:12 UTC | 0xb0b1…2a3b | IN | VLAD | $0.000 ETH | 0.00000098 | |
| 0x228217…7452cf | Approve | 29,874,747 | 17 days agoFri, 07 Aug 2026 03:06:04 UTC | 0xb0b1…2a3b | IN | VLAD | $0.000 ETH | 0.00000170 | |
| 0xd90219…b26b10 | Approve | 29,873,311 | 17 days agoFri, 07 Aug 2026 03:03:39 UTC | 0xb0b1…2a3b | IN | VLAD | $0.000 ETH | 0.00000098 | |
| 0x81adfb…6c225d | Approve | 29,873,229 | 17 days agoFri, 07 Aug 2026 03:03:31 UTC | 0xb0b1…2a3b | IN | VLAD | $0.000 ETH | 0.00000171 | |
| 0xa9cfc5…560efd | Approve | 21,226,562 | 27 days agoTue, 28 Jul 2026 02:16:50 UTC | 0x7a0f…2100 | IN | VLAD | $0.000 ETH | 0.00000184 | |
| 0xda6fd8…767c48 | Approve | 16,400,232 | 33 days agoWed, 22 Jul 2026 11:46:32 UTC | 0xa156…6859 | IN | VLAD | $0.000 ETH | 0.00000378 | |
| 0x7243eb…f87930 | Approve | 12,675,622 | 37 days agoSat, 18 Jul 2026 03:58:06 UTC | 0x52d9…d649 | IN | VLAD | $0.000 ETH | 0.00000398 | |
| 0x7b2d12…c6cf6e | Mint | 12,675,266 | 37 days agoSat, 18 Jul 2026 03:57:30 UTC | 0x52d9…d649 | IN | VLAD | $0.000 ETH | 0.00000487 | |
| 0x6f1fb0…a64538 | Approve | 12,675,224 | 37 days agoSat, 18 Jul 2026 03:57:26 UTC | 0x8f63…b53c | IN | VLAD | $0.000 ETH | 0.00000398 | |
| 0x69dc7b…64eadd | Swap | 12,668,435 | 37 days agoSat, 18 Jul 2026 03:46:04 UTC | 0x52d9…d649 | IN | VLAD | $0.000 ETH | 0.00001610 | |
| 0xcaa73b…fa9f98 | Swap | 12,666,628 | 37 days agoSat, 18 Jul 2026 03:43:02 UTC | 0x52d9…d649 | IN | VLAD | $0.000 ETH | 0.00001782 | |
| 0x684013…09e2ff | Swap | 12,663,063 | 37 days agoSat, 18 Jul 2026 03:37:03 UTC | 0x52d9…d649 | IN | VLAD | $0.000 ETH | 0.00001984 | |
| 0x598e16…13a2b9 | Swap | 12,655,894 | 37 days agoSat, 18 Jul 2026 03:25:03 UTC | 0x52d9…d649 | IN | VLAD | $0.000 ETH | 0.00003010 | |
| 0x6dd9b1…ff81f0 | Swap | 12,641,558 | 37 days agoSat, 18 Jul 2026 03:01:04 UTC | 0x52d9…d649 | IN | VLAD | $0.000 ETH | 0.00002088 | |
| 0xd44b1e…7304f4 | Approve | 12,637,851 | 37 days agoSat, 18 Jul 2026 02:54:52 UTC | 0x7a0c…9361 | IN | VLAD | $0.000 ETH | 0.00000409 | |
| 0x785675…4af865 | Swap | 12,634,396 | 37 days agoSat, 18 Jul 2026 02:49:06 UTC | 0x52d9…d649 | IN | VLAD | $0.000 ETH | 0.00001837 | |
| 0xb1c7ab…4d9a75 | Swap | 12,632,608 | 37 days agoSat, 18 Jul 2026 02:46:06 UTC | 0x52d9…d649 | IN | VLAD | $0.000 ETH | 0.00002033 | |
| 0x7c952d…057411 | Swap | 12,629,031 | 37 days agoSat, 18 Jul 2026 02:40:08 UTC | 0x52d9…d649 | IN | VLAD | $0.000 ETH | 0.00002471 | |
| 0x4974c9…023791 | Approve | 12,628,384 | 37 days agoSat, 18 Jul 2026 02:39:03 UTC | 0xa70d…f907 | IN | VLAD | $0.000 ETH | 0.00000405 | |
| 0x376b04…6c2104 | Swap | 12,623,658 | 37 days agoSat, 18 Jul 2026 02:31:09 UTC | 0x52d9…d649 | IN | VLAD | $0.000 ETH | 0.00002197 | |
| 0x92003e…4ba87b | Swap | 12,621,961 | 37 days agoSat, 18 Jul 2026 02:28:20 UTC | 0x52d9…d649 | IN | VLAD | $0.000 ETH | 0.00002627 | |
| 0xbce79d…d37509 | Swap | 12,618,238 | 37 days agoSat, 18 Jul 2026 02:22:07 UTC | 0x52d9…d649 | IN | VLAD | $0.000 ETH | 0.00002620 | |
| 0x1015da…9a13d0 | Swap | 12,616,466 | 37 days agoSat, 18 Jul 2026 02:19:09 UTC | 0x52d9…d649 | IN | VLAD | $0.000 ETH | 0.00002738 | |
| 0xa3429b…0dd24e | Swap | 12,614,671 | 37 days agoSat, 18 Jul 2026 02:16:10 UTC | 0x52d9…d649 | IN | VLAD | $0.000 ETH | 0.00003326 | |
| 0x1af6b5…e96fa5 | Swap | 12,612,872 | 37 days agoSat, 18 Jul 2026 02:13:09 UTC | 0x52d9…d649 | IN | VLAD | $0.000 ETH | 0.00003676 |
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0x9b1bac…36ad68 | 17 days agoFri, 07 Aug 2026 03:06:12 UTC | Approval | [0] 0x000000000000…ad932a3b [1] 0x000000000000…a3304e64 data: 0x000000000000000000…00000000 |
| 0x228217…7452cf | 17 days agoFri, 07 Aug 2026 03:06:04 UTC | Approval | [0] 0x000000000000…ad932a3b [1] 0x000000000000…a3304e64 data: 0x000000000000000000…eb636000 |
| 0xd90219…b26b10 | 17 days agoFri, 07 Aug 2026 03:03:39 UTC | Approval | [0] 0x000000000000…ad932a3b [1] 0x000000000000…a3304e64 data: 0x000000000000000000…00000000 |
| 0x81adfb…6c225d | 17 days agoFri, 07 Aug 2026 03:03:31 UTC | Approval | [0] 0x000000000000…ad932a3b [1] 0x000000000000…a3304e64 data: 0x000000000000000000…b4e08000 |
| 0x94aeb0…dec133 | 24 days agoFri, 31 Jul 2026 08:35:58 UTC | Approval | [0] 0x000000000000…4f0a92c9 [1] 0x000000000000…3ac78ba3 data: 0x000000000000000000…b4e08000 |
| 0xa9cfc5…560efd | 27 days agoTue, 28 Jul 2026 02:16:50 UTC | Approval | [0] 0x000000000000…2f902100 [1] 0x000000000000…262c40dc data: 0xffffffffffffffffff…ffffffff |
| 0x5943b4…5a6f09 | 29 days agoSat, 25 Jul 2026 13:49:03 UTC | Approval | [0] 0x000000000000…bde3ed9a [1] 0x000000000000…3ac78ba3 data: 0x000000000000000000…b4e08000 |
| 0xda6fd8…767c48 | 33 days agoWed, 22 Jul 2026 11:46:32 UTC | Approval | [0] 0x000000000000…c5f86859 [1] 0x000000000000…172bb7fe data: 0xffffffffffffffffff…ffffffff |
| 0x1876fb…77bbf1 | 37 days agoSat, 18 Jul 2026 04:01:07 UTC | Transfer | [0] 0x000000000000…c6cacd66 [1] 0x000000000000…9480b53c data: 0x000000000000000000…64604f2f |
| 0x673fcf…854281 | 37 days agoSat, 18 Jul 2026 03:59:39 UTC | Transfer | [0] 0x000000000000…a315d649 [1] 0x000000000000…c6cacd66 data: 0x000000000000000000…48000000 |
| 0xfd891b…28ff6d | 37 days agoSat, 18 Jul 2026 03:58:14 UTC | Transfer | [0] 0x000000000000…a315d649 [1] 0x000000000000…c6cacd66 data: 0x000000000000000000…a0000000 |
| 0x7243eb…f87930 | 37 days agoSat, 18 Jul 2026 03:58:06 UTC | Approval | [0] 0x000000000000…a315d649 [1] 0x000000000000…3ac78ba3 data: 0xffffffffffffffffff…ffffffff |
| 0x7b2d12…c6cf6e | 37 days agoSat, 18 Jul 2026 03:57:30 UTC | 0x3f2c9d…4273 | [0] 0x000000000000…a315d649 data: 0x000000000000000000…00000000 |
| 0x7b2d12…c6cf6e | 37 days agoSat, 18 Jul 2026 03:57:30 UTC | Transfer | [0] 0x000000000000…00000000 [1] 0x000000000000…a315d649 data: 0x000000000000000000…00000000 |
| 0x6f1fb0…a64538 | 37 days agoSat, 18 Jul 2026 03:57:26 UTC | Approval | [0] 0x000000000000…9480b53c [1] 0x000000000000…73ab8a37 data: 0xffffffffffffffffff…ffffffff |
| 0x368330…0349ba | 37 days agoSat, 18 Jul 2026 03:57:25 UTC | Transfer | [0] 0x000000000000…c6cacd66 [1] 0x000000000000…9480b53c data: 0x000000000000000000…8cea3bcd |
| 0x55eaf6…5f9a37 | 37 days agoSat, 18 Jul 2026 03:56:28 UTC | Transfer | [0] 0x000000000000…eb62dd95 [1] 0x000000000000…c6cacd66 data: 0x000000000000000000…93128000 |
| 0xcdec2a…e6509d | 37 days agoSat, 18 Jul 2026 03:55:49 UTC | Transfer | [0] 0x000000000000…c6cacd66 [1] 0x000000000000…eb62dd95 data: 0x000000000000000000…ec6b3094 |
| 0xd37bf8…bb7bbb | 37 days agoSat, 18 Jul 2026 03:55:34 UTC | Transfer | [0] 0x000000000000…c6cacd66 [1] 0x000000000000…fdeaf722 data: 0x000000000000000000…f1220a98 |
| 0xab3e47…c62b63 | 37 days agoSat, 18 Jul 2026 03:55:13 UTC | Transfer | [0] 0x000000000000…c6cacd66 [1] 0x000000000000…eb62dd95 data: 0x000000000000000000…65873cf6 |
| 0xb3f6fa…cc5294 | 37 days agoSat, 18 Jul 2026 03:55:03 UTC | Transfer | [0] 0x000000000000…eb62dd95 [1] 0x000000000000…c6cacd66 data: 0x000000000000000000…635dfc00 |
| 0x39ac42…0ca755 | 37 days agoSat, 18 Jul 2026 03:54:36 UTC | Transfer | [0] 0x000000000000…c6cacd66 [1] 0x000000000000…eb62dd95 data: 0x000000000000000000…eadfed50 |
| 0x661584…dd7589 | 37 days agoSat, 18 Jul 2026 03:53:56 UTC | Transfer | [0] 0x000000000000…eb62dd95 [1] 0x000000000000…c6cacd66 data: 0x000000000000000000…20733c00 |
| 0x3f2862…628715 | 37 days agoSat, 18 Jul 2026 03:53:46 UTC | Transfer | [0] 0x000000000000…c6cacd66 [1] 0x000000000000…eb62dd95 data: 0x000000000000000000…2adfc0d6 |
| 0xec4d8d…529be1 | 37 days agoSat, 18 Jul 2026 03:53:31 UTC | Transfer | [0] 0x000000000000…c6cacd66 [1] 0x000000000000…89a88de2 data: 0x000000000000000000…c890cd97 |