// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.2.0) (proxy/transparent/TransparentUpgradeableProxy.sol)
pragma solidity ^0.8.22;
import {ERC1967Utils} from "../ERC1967/ERC1967Utils.sol";
import {ERC1967Proxy} from "../ERC1967/ERC1967Proxy.sol";
import {IERC1967} from "../../interfaces/IERC1967.sol";
import {ProxyAdmin} from "./ProxyAdmin.sol";
/**
* @dev Interface for {TransparentUpgradeableProxy}. In order to implement transparency, {TransparentUpgradeableProxy}
* does not implement this interface directly, and its upgradeability mechanism is implemented by an internal dispatch
* mechanism. The compiler is unaware that these functions are implemented by {TransparentUpgradeableProxy} and will not
* include them in the ABI so this interface must be used to interact with it.
*/
interface ITransparentUpgradeableProxy is IERC1967 {
/// @dev See {UUPSUpgradeable-upgradeToAndCall}
function upgradeToAndCall(address newImplementation, bytes calldata data) external payable;
}
/**
* @dev This contract implements a proxy that is upgradeable through an associated {ProxyAdmin} instance.
*
* To avoid https://medium.com/nomic-labs-blog/malicious-backdoors-in-ethereum-proxies-62629adf3357[proxy selector
* clashing], which can potentially be used in an attack, this contract uses the
* https://blog.openzeppelin.com/the-transparent-proxy-pattern/[transparent proxy pattern]. This pattern implies two
* things that go hand in hand:
*
* 1. If any account other than the admin calls the proxy, the call will be forwarded to the implementation, even if
* that call matches the {ITransparentUpgradeableProxy-upgradeToAndCall} function exposed by the proxy itself.
* 2. If the admin calls the proxy, it can call the `upgradeToAndCall` function but any other call won't be forwarded to
* the implementation. If the admin tries to call a function on the implementation it will fail with an error indicating
* the proxy admin cannot fallback to the target implementation.
*
* These properties mean that the admin account can only be used for upgrading the proxy, so it's best if it's a
* dedicated account that is not used for anything else. This will avoid headaches due to sudden errors when trying to
* call a function from the proxy implementation. For this reason, the proxy deploys an instance of {ProxyAdmin} and
* allows upgrades only if they come through it. You should think of the `ProxyAdmin` instance as the administrative
* interface of the proxy, including the ability to change who can trigger upgrades by transferring ownership.
*
* NOTE: The real interface of this proxy is that defined in `ITransparentUpgradeableProxy`. This contract does not
* inherit from that interface, and instead `upgradeToAndCall` is implicitly implemented using a custom dispatch
* mechanism in `_fallback`. Consequently, the compiler will not produce an ABI for this contract. This is necessary to
* fully implement transparency without decoding reverts caused by selector clashes between the proxy and the
* implementation.
*
* NOTE: This proxy does not inherit from {Context} deliberately. The {ProxyAdmin} of this contract won't send a
* meta-transaction in any way, and any other meta-transaction setup should be made in the implementation contract.
*
* IMPORTANT: This contract avoids unnecessary storage reads by setting the admin only during construction as an
* immutable variable, preventing any changes thereafter. However, the admin slot defined in ERC-1967 can still be
* overwritten by the implementation logic pointed to by this proxy. In such cases, the contract may end up in an
* undesirable state where the admin slot is different from the actual admin. Relying on the value of the admin slot
* is generally fine if the implementation is trusted.
*
* WARNING: It is not recommended to extend this contract to add additional external functions. If you do so, the
* compiler will not check that there are no selector conflicts, due to the note above. A selector clash between any new
* function and the functions declared in {ITransparentUpgradeableProxy} will be resolved in favor of the new one. This
* could render the `upgradeToAndCall` function inaccessible, preventing upgradeability and compromising transparency.
*/
contract TransparentUpgradeableProxy is ERC1967Proxy {
// An immutable address for the admin to avoid unnecessary SLOADs before each call
// at the expense of removing the ability to change the admin once it's set.
// This is acceptable if the admin is always a ProxyAdmin instance or similar contract
// with its own ability to transfer the permissions to another account.
address private immutable _admin;
/**
* @dev The proxy caller is the current admin, and can't fallback to the proxy target.
*/
error ProxyDeniedAdminAccess();
/**
* @dev Initializes an upgradeable proxy managed by an instance of a {ProxyAdmin} with an `initialOwner`,
* backed by the implementation at `_logic`, and optionally initialized with `_data` as explained in
* {ERC1967Proxy-constructor}.
*/
constructor(address _logic, address initialOwner, bytes memory _data) payable ERC1967Proxy(_logic, _data) {
_admin = address(new ProxyAdmin(initialOwner));
// Set the storage value and emit an event for ERC-1967 compatibility
ERC1967Utils.changeAdmin(_proxyAdmin());
}
/**
* @dev Returns the admin of this proxy.
*/
function _proxyAdmin() internal view virtual returns (address) {
return _admin;
}
/**
* @dev If caller is the admin process the call internally, otherwise transparently fallback to the proxy behavior.
*/
function _fallback() internal virtual override {
if (msg.sender == _proxyAdmin()) {
if (msg.sig != ITransparentUpgradeableProxy.upgradeToAndCall.selector) {
revert ProxyDeniedAdminAccess();
} else {
_dispatchUpgradeToAndCall();
}
} else {
super._fallback();
}
}
/**
* @dev Upgrade the implementation of the proxy. See {ERC1967Utils-upgradeToAndCall}.
*
* Requirements:
*
* - If `data` is empty, `msg.value` must be zero.
*/
function _dispatchUpgradeToAndCall() private {
(address newImplementation, bytes memory data) = abi.decode(msg.data[4:], (address, bytes));
ERC1967Utils.upgradeToAndCall(newImplementation, data);
}
}[
{
"type": "constructor",
"inputs": [
{
"name": "_logic",
"type": "address",
"internalType": "address"
},
{
"name": "initialOwner",
"type": "address",
"internalType": "address"
},
{
"name": "_data",
"type": "bytes",
"internalType": "bytes"
}
],
"stateMutability": "payable"
},
{
"name": "AddressEmptyCode",
"type": "error",
"inputs": [
{
"name": "target",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC1967InvalidAdmin",
"type": "error",
"inputs": [
{
"name": "admin",
"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": "ProxyDeniedAdminAccess",
"type": "error",
"inputs": []
},
{
"name": "AdminChanged",
"type": "event",
"inputs": [
{
"name": "previousAdmin",
"type": "address",
"indexed": false,
"internalType": "address"
},
{
"name": "newAdmin",
"type": "address",
"indexed": false,
"internalType": "address"
}
],
"anonymous": false
},
{
"name": "Upgraded",
"type": "event",
"inputs": [
{
"name": "implementation",
"type": "address",
"indexed": true,
"internalType": "address"
}
],
"anonymous": false
},
{
"type": "fallback",
"stateMutability": "payable"
}
]0x60a0604052604051610e84380380610e848339810160408190526100229161039d565b828161002e828261008f565b50508160405161003d9061033a565b6001600160a01b039091168152602001604051809103906000f080158015610069573d6000803e3d6000fd5b506001600160a01b031660805261008761008260805190565b6100ee565b50505061048f565b6100988261015c565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a28051156100e2576100dd82826101db565b505050565b6100ea610252565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61012e600080516020610e64833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a161015981610273565b50565b806001600160a01b03163b60000361019757604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b6060600080846001600160a01b0316846040516101f89190610473565b600060405180830381855af49150503d8060008114610233576040519150601f19603f3d011682016040523d82523d6000602084013e610238565b606091505b5090925090506102498583836102b2565b95945050505050565b34156102715760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b03811661029d57604051633173bdd160e11b81526000600482015260240161018e565b80600080516020610e648339815191526101ba565b6060826102c7576102c282610311565b61030a565b81511580156102de57506001600160a01b0384163b155b1561030757604051639996b31560e01b81526001600160a01b038516600482015260240161018e565b50805b9392505050565b8051156103215780518082602001fd5b60405163d6bda27560e01b815260040160405180910390fd5b61052c8061093883390190565b80516001600160a01b038116811461035e57600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60005b8381101561039457818101518382015260200161037c565b50506000910152565b6000806000606084860312156103b257600080fd5b6103bb84610347565b92506103c960208501610347565b60408501519092506001600160401b038111156103e557600080fd5b8401601f810186136103f657600080fd5b80516001600160401b0381111561040f5761040f610363565b604051601f8201601f19908116603f011681016001600160401b038111828210171561043d5761043d610363565b60405281815282820160200188101561045557600080fd5b610466826020830160208601610379565b8093505050509250925092565b60008251610485818460208701610379565b9190910192915050565b60805161048f6104a960003960006010015261048f6000f3fe608060405261000c61000e565b005b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316330361007b576000356001600160e01b03191663278f794360e11b14610071576040516334ad5dbb60e21b815260040160405180910390fd5b610079610083565b565b6100796100b2565b6000806100933660048184610312565b8101906100a09190610352565b915091506100ae82826100c2565b5050565b6100796100bd61011d565b610155565b6100cb82610179565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a28051156101155761011082826101f5565b505050565b6100ae61026b565b60006101507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b905090565b3660008037600080366000845af43d6000803e808015610174573d6000f35b3d6000fd5b806001600160a01b03163b6000036101b457604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b031684604051610212919061042a565b600060405180830381855af49150503d806000811461024d576040519150601f19603f3d011682016040523d82523d6000602084013e610252565b606091505b509150915061026285838361028a565b95945050505050565b34156100795760405163b398979f60e01b815260040160405180910390fd5b60608261029f5761029a826102e9565b6102e2565b81511580156102b657506001600160a01b0384163b155b156102df57604051639996b31560e01b81526001600160a01b03851660048201526024016101ab565b50805b9392505050565b8051156102f95780518082602001fd5b60405163d6bda27560e01b815260040160405180910390fd5b6000808585111561032257600080fd5b8386111561032f57600080fd5b5050820193919092039150565b634e487b7160e01b600052604160045260246000fd5b6000806040838503121561036557600080fd5b82356001600160a01b038116811461037c57600080fd5b9150602083013567ffffffffffffffff81111561039857600080fd5b8301601f810185136103a957600080fd5b803567ffffffffffffffff8111156103c3576103c361033c565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156103f2576103f261033c565b60405281815282820160200187101561040a57600080fd5b816020840160208301376000602083830101528093505050509250929050565b6000825160005b8181101561044b5760208186018101518583015201610431565b50600092019182525091905056fea26469706673582212207014fe8caabcd79fb4cbc32f88e0702f3d89ad8a43781035478f80dc4ed160e564736f6c634300081d0033608060405234801561001057600080fd5b5060405161052c38038061052c83398101604081905261002f916100be565b806001600160a01b03811661005e57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b6100678161006e565b50506100ee565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100d057600080fd5b81516001600160a01b03811681146100e757600080fd5b9392505050565b61042f806100fd6000396000f3fe60806040526004361061004a5760003560e01c8063715018a61461004f5780638da5cb5b146100665780639623609d14610093578063ad3cb1cc146100a6578063f2fde38b146100e4575b600080fd5b34801561005b57600080fd5b50610064610104565b005b34801561007257600080fd5b506000546040516001600160a01b0390911681526020015b60405180910390f35b6100646100a1366004610272565b610118565b3480156100b257600080fd5b506100d7604051806040016040528060058152602001640352e302e360dc1b81525081565b60405161008a9190610396565b3480156100f057600080fd5b506100646100ff3660046103b0565b610187565b61010c6101ca565b61011660006101f7565b565b6101206101ca565b60405163278f794360e11b81526001600160a01b03841690634f1ef28690349061015090869086906004016103cd565b6000604051808303818588803b15801561016957600080fd5b505af115801561017d573d6000803e3d6000fd5b5050505050505050565b61018f6101ca565b6001600160a01b0381166101be57604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b6101c7816101f7565b50565b6000546001600160a01b031633146101165760405163118cdaa760e01b81523360048201526024016101b5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101c757600080fd5b634e487b7160e01b600052604160045260246000fd5b60008060006060848603121561028757600080fd5b833561029281610247565b925060208401356102a281610247565b9150604084013567ffffffffffffffff8111156102be57600080fd5b8401601f810186136102cf57600080fd5b803567ffffffffffffffff8111156102e9576102e961025c565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156103185761031861025c565b60405281815282820160200188101561033057600080fd5b816020840160208301376000602083830101528093505050509250925092565b6000815180845260005b818110156103765760208185018101518683018201520161035a565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006103a96020830184610350565b9392505050565b6000602082840312156103c257600080fd5b81356103a981610247565b6001600160a01b03831681526040602082018190526000906103f190830184610350565b94935050505056fea26469706673582212200c44c9533289b5cb174ba0db349eeb500f7fecf64044b22c53a843a7b937812e64736f6c634300081d0033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61030000000000000000000000002cbf5e3e36124a031042ad46537789e85bb203c000000000000000000000000045b433749b4a6f09772af8dfd412039216d3680a00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000024c4d66de80000000000000000000000005d98f54d829708eeb2aa555badb96bcb5400def100000000000000000000000000000000000000000000000000000000
0x608060405261000c61000e565b005b7f00000000000000000000000054bf95ac413a189d780378c9ab5f6f037c4cf2eb6001600160a01b0316330361007b576000356001600160e01b03191663278f794360e11b14610071576040516334ad5dbb60e21b815260040160405180910390fd5b610079610083565b565b6100796100b2565b6000806100933660048184610312565b8101906100a09190610352565b915091506100ae82826100c2565b5050565b6100796100bd61011d565b610155565b6100cb82610179565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a28051156101155761011082826101f5565b505050565b6100ae61026b565b60006101507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b905090565b3660008037600080366000845af43d6000803e808015610174573d6000f35b3d6000fd5b806001600160a01b03163b6000036101b457604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b031684604051610212919061042a565b600060405180830381855af49150503d806000811461024d576040519150601f19603f3d011682016040523d82523d6000602084013e610252565b606091505b509150915061026285838361028a565b95945050505050565b34156100795760405163b398979f60e01b815260040160405180910390fd5b60608261029f5761029a826102e9565b6102e2565b81511580156102b657506001600160a01b0384163b155b156102df57604051639996b31560e01b81526001600160a01b03851660048201526024016101ab565b50805b9392505050565b8051156102f95780518082602001fd5b60405163d6bda27560e01b815260040160405180910390fd5b6000808585111561032257600080fd5b8386111561032f57600080fd5b5050820193919092039150565b634e487b7160e01b600052604160045260246000fd5b6000806040838503121561036557600080fd5b82356001600160a01b038116811461037c57600080fd5b9150602083013567ffffffffffffffff81111561039857600080fd5b8301601f810185136103a957600080fd5b803567ffffffffffffffff8111156103c3576103c361033c565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156103f2576103f261033c565b60405281815282820160200187101561040a57600080fd5b816020840160208301376000602083830101528093505050509250929050565b6000825160005b8181101561044b5760208186018101518583015201610431565b50600092019182525091905056fea26469706673582212207014fe8caabcd79fb4cbc32f88e0702f3d89ad8a43781035478f80dc4ed160e564736f6c634300081d0033
| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| United States Global Dollars (USDG) | USDG | 13 | $1 | $13 |
| Global Dollar (USDG) | USDG | 6.25 | $1 | $6.25 |
| Global Dollar (USDG) | USDG | 6 | $1 | $6 |
| Global Dollar (USDG) | USDG | 5.678 | $1 | $5.68 |
| DIH | 1 | $0.0000102 | $0 | |
| Lucky Dog (LDOG) | LDOG | 500,000 | — | — |
| OpenAI (OpenAI) | OpenAI | 888.2 | — | — |
| Batman And Robin (BATMAN&ROBIN) | BATMAN&ROBIN | 100 | — | — |
| Ravenhood (RVHOOD) | RVHOOD | 70 | — | — |
| Pickle (PICKLE) | PICKLE | 25 | — | — |
| HOOD FOORGE (HOODFRG) | HOODFRG | 20 | — | — |
| EarthCoin (EarthCoin) | EarthCoin | 15 | — | — |
| The Juggernauts (JUGGERNAUT) | JUGGERNAUT | 15 | — | — |
| Vanguar Oil Digital Reserve (VODR) | VODR | 10 | — | — |
| Swole Doge (SWOGE) | SWOGE | 10 | — | — |
| Stargate Project (SPC) | SPC | 10 | — | — |
| RobinHood Bounty (RHB) | RHB | 10 | — | — |
| Build Loud (BUILD) | BUILD | 10 | — | — |
| Type | Age | Block | Details |
|---|---|---|---|
| no cross-chain L1↔L2 transactions for this address | |||
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0xc8ecfd…ca70a9 | 24 mins agoTue, 18 Aug 2026 07:30:50 UTC | 0xdb0b70…a37d | data: 0x000000000000000000…13495926 |
| 0x73d8a4…ad5d47 | 58 mins agoTue, 18 Aug 2026 06:56:28 UTC | 0x7259e7…0d53 | data: 0x000000000000000000…13a83fa5 |
| 0x73d8a4…ad5d47 | 58 mins agoTue, 18 Aug 2026 06:56:28 UTC | 0xdb0b70…a37d | data: 0x000000000000000000…51a60b47 |
| 0x5e713f…88e874 | 1 hr agoTue, 18 Aug 2026 06:08:45 UTC | 0xdb0b70…a37d | data: 0x000000000000000000…6f35da45 |
| 0xb7cec5…caf098 | 1 hr agoTue, 18 Aug 2026 06:02:37 UTC | 0xdb0b70…a37d | data: 0x000000000000000000…e7fec028 |
| 0x3b7959…fccea5 | 2 hrs agoTue, 18 Aug 2026 05:45:22 UTC | 0xdb0b70…a37d | data: 0x000000000000000000…fa86f18c |
| 0xd07157…5abb22 | 2 hrs agoTue, 18 Aug 2026 04:56:16 UTC | 0xdb0b70…a37d | data: 0x000000000000000000…2e80e88d |
| 0x14744b…9735c5 | 4 hrs agoTue, 18 Aug 2026 03:33:39 UTC | 0xdb0b70…a37d | data: 0x000000000000000000…864b12ac |
| 0xe41302…5ee8e7 | 5 hrs agoTue, 18 Aug 2026 02:35:19 UTC | 0xdb0b70…a37d | data: 0x000000000000000000…4c39e24f |
| 0xf56c52…bcac29 | 5 hrs agoTue, 18 Aug 2026 02:16:17 UTC | 0xdb0b70…a37d | data: 0x000000000000000000…d69e7bfa |
| 0xe0811b…203f96 | 6 hrs agoTue, 18 Aug 2026 01:35:59 UTC | 0x7259e7…0d53 | data: 0x000000000000000000…1282d48c |
| 0xe0811b…203f96 | 6 hrs agoTue, 18 Aug 2026 01:35:59 UTC | 0xdb0b70…a37d | data: 0x000000000000000000…a5588071 |
| 0xab284e…01e28d | 8 hrs agoMon, 17 Aug 2026 23:49:29 UTC | 0xdb0b70…a37d | data: 0x000000000000000000…00aa54a9 |
| 0x2b0734…b0c04f | 8 hrs agoMon, 17 Aug 2026 22:57:09 UTC | 0xdb0b70…a37d | data: 0x000000000000000000…72b81451 |
| 0x5a0485…06f08b | 10 hrs agoMon, 17 Aug 2026 21:27:53 UTC | 0xdb0b70…a37d | data: 0x000000000000000000…a18fa20e |
| 0x92c35c…b57d67 | 10 hrs agoMon, 17 Aug 2026 21:19:05 UTC | 0xdb0b70…a37d | data: 0x000000000000000000…e0e11c23 |
| 0x10da10…0e4a5f | 10 hrs agoMon, 17 Aug 2026 21:06:36 UTC | 0xdb0b70…a37d | data: 0x000000000000000000…64a058d8 |
| 0x2a214b…13694c | 11 hrs agoMon, 17 Aug 2026 20:50:30 UTC | 0xdb0b70…a37d | data: 0x000000000000000000…0256defc |
| 0x1eca5d…36dbb0 | 11 hrs agoMon, 17 Aug 2026 20:30:35 UTC | 0xdb0b70…a37d | data: 0x000000000000000000…23d257f2 |
| 0xa5a2a2…5a77f3 | 11 hrs agoMon, 17 Aug 2026 20:24:54 UTC | 0x7259e7…0d53 | data: 0x000000000000000000…116607ab |
| 0xa5a2a2…5a77f3 | 11 hrs agoMon, 17 Aug 2026 20:24:54 UTC | 0xdb0b70…a37d | data: 0x000000000000000000…345ad548 |
| 0xfb6213…3ac9c4 | 11 hrs agoMon, 17 Aug 2026 20:23:59 UTC | 0x7259e7…0d53 | data: 0x000000000000000000…1165301c |
| 0xfb6213…3ac9c4 | 11 hrs agoMon, 17 Aug 2026 20:23:59 UTC | 0xdb0b70…a37d | data: 0x000000000000000000…a6a4f132 |
| 0xc5fa4d…b59e50 | 11 hrs agoMon, 17 Aug 2026 20:23:30 UTC | 0xdb0b70…a37d | data: 0x000000000000000000…15fe87c0 |
| 0x3ae366…051816 | 11 hrs agoMon, 17 Aug 2026 20:17:42 UTC | 0xdb0b70…a37d | data: 0x000000000000000000…a4a95269 |
| 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 ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0xc8ecfd…ca70a9 | 0x295f0582 | 39,520,297 | 24 mins agoTue, 18 Aug 2026 07:30:50 UTC | 0x5d98…def1 | IN | TransparentUpgradeableProxy | $0.000 ETH | 0.00000686 | |
| !0x28ebd8…bcf465 | 0x295f0582 | 39,520,294 | 24 mins agoTue, 18 Aug 2026 07:30:50 UTC | 0x5d98…def1 | IN | TransparentUpgradeableProxy | $0.000 ETH | 0.00000678 | |
| 0x73d8a4…ad5d47 | 0x295f0582 | 39,499,754 | 58 mins agoTue, 18 Aug 2026 06:56:28 UTC | 0x5d98…def1 | IN | TransparentUpgradeableProxy | $0.030.00001 ETH | 0.00001348 | |
| 0x5e713f…88e874 | 0x295f0582 | 39,471,220 | 1 hr agoTue, 18 Aug 2026 06:08:45 UTC | 0x5d98…def1 | IN | TransparentUpgradeableProxy | $0.000 ETH | 0.00000543 | |
| 0xb7cec5…caf098 | 0x295f0582 | 39,467,556 | 1 hr agoTue, 18 Aug 2026 06:02:37 UTC | 0x5d98…def1 | IN | TransparentUpgradeableProxy | $0.000 ETH | 0.00000506 | |
| !0x341419…debfb1 | 0x295f0582 | 39,467,553 | 1 hr agoTue, 18 Aug 2026 06:02:36 UTC | 0x5d98…def1 | IN | TransparentUpgradeableProxy | $0.000 ETH | 0.00000499 | |
| 0x3b7959…fccea5 | 0x295f0582 | 39,457,239 | 2 hrs agoTue, 18 Aug 2026 05:45:22 UTC | 0x5d98…def1 | IN | TransparentUpgradeableProxy | $0.000 ETH | 0.00000508 | |
| 0xd07157…5abb22 | 0x295f0582 | 39,427,911 | 2 hrs agoTue, 18 Aug 2026 04:56:16 UTC | 0x5d98…def1 | IN | TransparentUpgradeableProxy | $0.000 ETH | 0.00000694 | |
| 0x14744b…9735c5 | 0x295f0582 | 39,378,512 | 4 hrs agoTue, 18 Aug 2026 03:33:39 UTC | 0x5d98…def1 | IN | TransparentUpgradeableProxy | $0.000 ETH | 0.00000690 | |
| 0xe41302…5ee8e7 | 0x295f0582 | 39,343,592 | 5 hrs agoTue, 18 Aug 2026 02:35:19 UTC | 0x5d98…def1 | IN | TransparentUpgradeableProxy | $0.000 ETH | 0.00000708 | |
| 0xf56c52…bcac29 | 0x295f0582 | 39,332,197 | 5 hrs agoTue, 18 Aug 2026 02:16:17 UTC | 0x5d98…def1 | IN | TransparentUpgradeableProxy | $0.000 ETH | 0.00000701 | |
| 0xe0811b…203f96 | 0x295f0582 | 39,308,088 | 6 hrs agoTue, 18 Aug 2026 01:35:59 UTC | 0x5d98…def1 | IN | TransparentUpgradeableProxy | $0.100.00005 ETH | 0.00001137 | |
| 0xab284e…01e28d | 0x295f0582 | 39,244,338 | 8 hrs agoMon, 17 Aug 2026 23:49:29 UTC | 0x5d98…def1 | IN | TransparentUpgradeableProxy | $0.000 ETH | 0.00000511 | |
| 0x2b0734…b0c04f | 0x295f0582 | 39,212,985 | 8 hrs agoMon, 17 Aug 2026 22:57:09 UTC | 0x5d98…def1 | IN | TransparentUpgradeableProxy | $0.000 ETH | 0.00000506 | |
| !0x97df5d…ba84dc | 0x295f0582 | 39,212,982 | 8 hrs agoMon, 17 Aug 2026 22:57:09 UTC | 0x5d98…def1 | IN | TransparentUpgradeableProxy | $0.000 ETH | 0.00000509 | |
| 0x5a0485…06f08b | 0x295f0582 | 39,159,562 | 10 hrs agoMon, 17 Aug 2026 21:27:53 UTC | 0x5d98…def1 | IN | TransparentUpgradeableProxy | $0.000 ETH | 0.00000995 | |
| 0x92c35c…b57d67 | 0x295f0582 | 39,154,305 | 10 hrs agoMon, 17 Aug 2026 21:19:05 UTC | 0x5d98…def1 | IN | TransparentUpgradeableProxy | $0.000 ETH | 0.00000550 | |
| 0x10da10…0e4a5f | 0x295f0582 | 39,146,830 | 10 hrs agoMon, 17 Aug 2026 21:06:36 UTC | 0x5d98…def1 | IN | TransparentUpgradeableProxy | $0.000 ETH | 0.00000873 | |
| 0x2a214b…13694c | 0x295f0582 | 39,137,199 | 11 hrs agoMon, 17 Aug 2026 20:50:30 UTC | 0x5d98…def1 | IN | TransparentUpgradeableProxy | $0.000 ETH | 0.00000585 | |
| !0x5ef3c5…fa25ac | 0x295f0582 | 39,125,545 | 11 hrs agoMon, 17 Aug 2026 20:31:02 UTC | 0x5d98…def1 | IN | TransparentUpgradeableProxy | $0.000 ETH | 0.00000085 | |
| 0x1eca5d…36dbb0 | 0x295f0582 | 39,125,271 | 11 hrs agoMon, 17 Aug 2026 20:30:35 UTC | 0x5d98…def1 | IN | TransparentUpgradeableProxy | $0.000 ETH | 0.00000799 | |
| 0xa5a2a2…5a77f3 | 0x295f0582 | 39,121,871 | 11 hrs agoMon, 17 Aug 2026 20:24:54 UTC | 0x5d98…def1 | IN | TransparentUpgradeableProxy | $0.040.00002 ETH | 0.00001601 | |
| 0xfb6213…3ac9c4 | 0x295f0582 | 39,121,323 | 11 hrs agoMon, 17 Aug 2026 20:23:59 UTC | 0x5d98…def1 | IN | TransparentUpgradeableProxy | $0.040.00002 ETH | 0.00001357 | |
| 0xc5fa4d…b59e50 | 0x295f0582 | 39,121,031 | 11 hrs agoMon, 17 Aug 2026 20:23:30 UTC | 0x5d98…def1 | IN | TransparentUpgradeableProxy | $0.000 ETH | 0.00000786 | |
| 0x3ae366…051816 | 0x295f0582 | 39,117,567 | 11 hrs agoMon, 17 Aug 2026 20:17:42 UTC | 0x5d98…def1 | IN | TransparentUpgradeableProxy | $0.000 ETH | 0.00000514 |
| Block | Age | Parent Transaction Hash | Type | Method | From | To | Value | |
|---|---|---|---|---|---|---|---|---|
| 39,499,754 | 58 mins agoTue, 18 Aug 2026 06:56:28 UTC | 0x73d8a4…ad5d47 | CALL | 0x295f0582 | 0x04ce…7777 | OUT | 0x4e51…feee | 0.00001 ETH |
| 39,499,754 | 58 mins agoTue, 18 Aug 2026 06:56:28 UTC | 0x73d8a4…ad5d47 | DELEGATECALL | 0x295f0582 | 0x04ce…7777 | OUT | 0x2cbf…03c0 | 0.00001 ETH |
| 39,308,088 | 6 hrs agoTue, 18 Aug 2026 01:35:59 UTC | 0xe0811b…203f96 | CALL | 0x295f0582 | 0x04ce…7777 | OUT | 0x79bb…e07c | 0.00005 ETH |
| 39,308,088 | 6 hrs agoTue, 18 Aug 2026 01:35:59 UTC | 0xe0811b…203f96 | DELEGATECALL | 0x295f0582 | 0x04ce…7777 | OUT | 0x2cbf…03c0 | 0.00005 ETH |
| 39,121,871 | 11 hrs agoMon, 17 Aug 2026 20:24:54 UTC | 0xa5a2a2…5a77f3 | CALL | 0x295f0582 | 0x04ce…7777 | OUT | 0x4e51…feee | 0.00002 ETH |
| 39,121,871 | 11 hrs agoMon, 17 Aug 2026 20:24:54 UTC | 0xa5a2a2…5a77f3 | DELEGATECALL | 0x295f0582 | 0x04ce…7777 | OUT | 0x2cbf…03c0 | 0.00002 ETH |
| 39,121,323 | 11 hrs agoMon, 17 Aug 2026 20:23:59 UTC | 0xfb6213…3ac9c4 | CALL | 0x295f0582 | 0x04ce…7777 | OUT | 0x4e51…feee | 0.00002 ETH |
| 39,121,323 | 11 hrs agoMon, 17 Aug 2026 20:23:59 UTC | 0xfb6213…3ac9c4 | DELEGATECALL | 0x295f0582 | 0x04ce…7777 | OUT | 0x2cbf…03c0 | 0.00002 ETH |
| 38,167,997 | 1 day agoSun, 16 Aug 2026 17:50:03 UTC | 0x9c4c82…a0d7dc | CALL | 0x295f0582 | 0x04ce…7777 | OUT | 0x79bb…e07c | 0.00027 ETH |
| 38,167,997 | 1 day agoSun, 16 Aug 2026 17:50:03 UTC | 0x9c4c82…a0d7dc | DELEGATECALL | 0x295f0582 | 0x04ce…7777 | OUT | 0x2cbf…03c0 | 0.00027 ETH |
| 37,929,209 | 1 day agoSun, 16 Aug 2026 11:10:33 UTC | 0xcffd99…8354e3 | DELEGATECALL | 0x295f0582 | 0x04ce…7777 | OUT | 0x2cbf…03c0 | 0.00013 ETH |
| 37,866,393 | 1 day agoSun, 16 Aug 2026 09:25:26 UTC | 0xa839b3…a8e320 | DELEGATECALL | 0x295f0582 | 0x04ce…7777 | OUT | 0x2cbf…03c0 | 0.00013 ETH |
| 37,866,390 | 1 day agoSun, 16 Aug 2026 09:25:25 UTC | 0xe4a1a8…94bb7c | DELEGATECALL | 0x295f0582 | 0x04ce…7777 | OUT | 0x2cbf…03c0 | 0.00013 ETH |
| 37,197,793 | 2 days agoSat, 15 Aug 2026 14:47:29 UTC | 0x9833d2…8ba620 | DELEGATECALL | 0x295f0582 | 0x04ce…7777 | OUT | 0x2cbf…03c0 | 0.01 ETH |
| 37,197,692 | 2 days agoSat, 15 Aug 2026 14:47:19 UTC | 0x11ad30…66ff8c | DELEGATECALL | 0x295f0582 | 0x04ce…7777 | OUT | 0x2cbf…03c0 | 0.01 ETH |
| 37,197,592 | 2 days agoSat, 15 Aug 2026 14:47:09 UTC | 0xd98eb8…4fc538 | DELEGATECALL | 0x295f0582 | 0x04ce…7777 | OUT | 0x2cbf…03c0 | 0.01 ETH |
| 37,197,476 | 2 days agoSat, 15 Aug 2026 14:46:58 UTC | 0xd92040…b4211a | DELEGATECALL | 0x295f0582 | 0x04ce…7777 | OUT | 0x2cbf…03c0 | 0.01 ETH |
| 37,197,354 | 2 days agoSat, 15 Aug 2026 14:46:46 UTC | 0x958d99…9ad735 | DELEGATECALL | 0x295f0582 | 0x04ce…7777 | OUT | 0x2cbf…03c0 | 0.01 ETH |
| 37,196,835 | 2 days agoSat, 15 Aug 2026 14:45:53 UTC | 0x184199…4bd60f | DELEGATECALL | 0x295f0582 | 0x04ce…7777 | OUT | 0x2cbf…03c0 | 0.01 ETH |
| 37,196,613 | 2 days agoSat, 15 Aug 2026 14:45:31 UTC | 0xe73d22…2770bc | DELEGATECALL | 0x295f0582 | 0x04ce…7777 | OUT | 0x2cbf…03c0 | 0.01 ETH |
| 37,196,514 | 2 days agoSat, 15 Aug 2026 14:45:21 UTC | 0xaa1017…c9407c | DELEGATECALL | 0x295f0582 | 0x04ce…7777 | OUT | 0x2cbf…03c0 | 0.01 ETH |
| 37,196,295 | 2 days agoSat, 15 Aug 2026 14:44:59 UTC | 0xd49b4d…7ff3b1 | DELEGATECALL | 0x295f0582 | 0x04ce…7777 | OUT | 0x2cbf…03c0 | 0.01 ETH |
| 37,196,193 | 2 days agoSat, 15 Aug 2026 14:44:49 UTC | 0x56d029…d7e471 | DELEGATECALL | 0x295f0582 | 0x04ce…7777 | OUT | 0x2cbf…03c0 | 0.01 ETH |
| 37,195,975 | 2 days agoSat, 15 Aug 2026 14:44:27 UTC | 0x7e4e51…99a96c | DELEGATECALL | 0x295f0582 | 0x04ce…7777 | OUT | 0x2cbf…03c0 | 0.01 ETH |
| 37,195,450 | 2 days agoSat, 15 Aug 2026 14:43:34 UTC | 0x3b9887…1b7147 | DELEGATECALL | 0x295f0582 | 0x04ce…7777 | OUT | 0x2cbf…03c0 | 0.01 ETH |
| Transaction Hash | Method | Block | Age | From | To | Amount | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| 0xc8ecfdf3…ca70a9 | Transfer | 39,520,297 | 24 mins agoTue, 18 Aug 2026 07:30:50 UTC | 0x04ce…7777 | OUT | 0x5d98…def1 | 0.201533 WETH | WETH (WETH) | |
| 0xc8ecfdf3…ca70a9 | Transfer | 39,520,297 | 24 mins agoTue, 18 Aug 2026 07:30:50 UTC | 0x52e6…71ca | IN | 0x04ce…7777 | 0.201533 WETH | WETH (WETH) | |
| 0xc8ecfdf3…ca70a9 | Transfer | 39,520,297 | 24 mins agoTue, 18 Aug 2026 07:30:50 UTC | 0x04ce…7777 | OUT | 0x6626…643a | 38,857.125914 MRDN | Meridian (MRDN) | |
| 0xc8ecfdf3…ca70a9 | Transfer | 39,520,297 | 24 mins agoTue, 18 Aug 2026 07:30:50 UTC | 0x5d98…def1 | IN | 0x04ce…7777 | 38,857.125914 MRDN | Meridian (MRDN) | |
| 0x73d8a448…ad5d47 | Transfer | 39,499,754 | 58 mins agoTue, 18 Aug 2026 06:56:28 UTC | 0x04ce…7777 | OUT | 0x5d98…def1 | 0.000000 r33 | xRAM Liquid Staking Token (r33) | |
| 0x73d8a448…ad5d47 | Transfer | 39,499,754 | 58 mins agoTue, 18 Aug 2026 06:56:28 UTC | 0x04ce…7777 | OUT | 0x0000…0000 | 23,965.182976 r33 | xRAM Liquid Staking Token (r33) | |
| 0x73d8a448…ad5d47 | Transfer | 39,499,754 | 58 mins agoTue, 18 Aug 2026 06:56:28 UTC | 0xd01a…837d | IN | 0x04ce…7777 | 23,965.182976 r33 | xRAM Liquid Staking Token (r33) | |
| 0x73d8a448…ad5d47 | Transfer | 39,499,754 | 58 mins agoTue, 18 Aug 2026 06:56:28 UTC | 0x04ce…7777 | OUT | 0x0000…4e08 | 0.202476 WETH | WETH (WETH) | |
| 0x73d8a448…ad5d47 | Transfer | 39,499,754 | 58 mins agoTue, 18 Aug 2026 06:56:28 UTC | 0x5d98…def1 | IN | 0x04ce…7777 | 0.202476 WETH | WETH (WETH) | |
| 0x5e713feb…88e874 | Transfer | 39,471,220 | 1 hr agoTue, 18 Aug 2026 06:08:45 UTC | 0x04ce…7777 | OUT | 0x5d98…def1 | 0.192233 WETH | WETH (WETH) | |
| 0x5e713feb…88e874 | Transfer | 39,471,220 | 1 hr agoTue, 18 Aug 2026 06:08:45 UTC | 0x0000…4e08 | IN | 0x04ce…7777 | 0.192233 WETH | WETH (WETH) | |
| 0x5e713feb…88e874 | Transfer | 39,471,220 | 1 hr agoTue, 18 Aug 2026 06:08:45 UTC | 0x04ce…7777 | OUT | 0x7fff…7a9c | 2,289.815984 SUSHI | SushiToken (SUSHI) | |
| 0x5e713feb…88e874 | Transfer | 39,471,220 | 1 hr agoTue, 18 Aug 2026 06:08:45 UTC | 0x5d98…def1 | IN | 0x04ce…7777 | 2,289.815984 SUSHI | SushiToken (SUSHI) | |
| 0xb7cec5a0…caf098 | Transfer | 39,467,556 | 1 hr agoTue, 18 Aug 2026 06:02:37 UTC | 0x04ce…7777 | OUT | 0x5d98…def1 | 0.046870 WETH | WETH (WETH) | |
| 0xb7cec5a0…caf098 | Transfer | 39,467,556 | 1 hr agoTue, 18 Aug 2026 06:02:37 UTC | 0x0000…4e08 | IN | 0x04ce…7777 | 0.046870 WETH | WETH (WETH) | |
| 0xb7cec5a0…caf098 | Transfer | 39,467,556 | 1 hr agoTue, 18 Aug 2026 06:02:37 UTC | 0x04ce…7777 | OUT | 0xeed0…9fbf | $NaN345,838,820.531778 SMOKE | ||
| 0xb7cec5a0…caf098 | Transfer | 39,467,556 | 1 hr agoTue, 18 Aug 2026 06:02:37 UTC | 0x5d98…def1 | IN | 0x04ce…7777 | $NaN345,838,820.531778 SMOKE | ||
| 0x3b795960…fccea5 | Transfer | 39,457,239 | 2 hrs agoTue, 18 Aug 2026 05:45:22 UTC | 0x04ce…7777 | OUT | 0x5d98…def1 | 0.202164 WETH | WETH (WETH) | |
| 0x3b795960…fccea5 | Transfer | 39,457,239 | 2 hrs agoTue, 18 Aug 2026 05:45:22 UTC | 0x0000…4e08 | IN | 0x04ce…7777 | 0.202164 WETH | WETH (WETH) | |
| 0x3b795960…fccea5 | Transfer | 39,457,239 | 2 hrs agoTue, 18 Aug 2026 05:45:22 UTC | 0x04ce…7777 | OUT | 0x353c…17fa | $NaN18,519,209.331622 GITLAWB | ||
| 0x3b795960…fccea5 | Transfer | 39,457,239 | 2 hrs agoTue, 18 Aug 2026 05:45:22 UTC | 0x5d98…def1 | IN | 0x04ce…7777 | $NaN18,519,209.331622 GITLAWB | ||
| 0xd0715781…5abb22 | Transfer | 39,427,911 | 2 hrs agoTue, 18 Aug 2026 04:56:16 UTC | 0x04ce…7777 | OUT | 0x5d98…def1 | 0.686433 WETH | WETH (WETH) | |
| 0xd0715781…5abb22 | Transfer | 39,427,911 | 2 hrs agoTue, 18 Aug 2026 04:56:16 UTC | 0x52e6…71ca | IN | 0x04ce…7777 | 0.686433 WETH | WETH (WETH) | |
| 0xd0715781…5abb22 | Transfer | 39,427,911 | 2 hrs agoTue, 18 Aug 2026 04:56:16 UTC | 0x04ce…7777 | OUT | 0x8366…0951 | 46,011.104610 FLOCK | FLock.io (FLOCK) | |
| 0xd0715781…5abb22 | Transfer | 39,427,911 | 2 hrs agoTue, 18 Aug 2026 04:56:16 UTC | 0x5d98…def1 | IN | 0x04ce…7777 | 46,011.104610 FLOCK | FLock.io (FLOCK) |