Transaction Hash:
Block:
22622954 at Jun-03-2025 08:31:23 AM +UTC
Transaction Fee:
0.000051945509221639 ETH
$0.22
Gas Used:
29,683 Gas / 1.750008733 Gwei
Emitted Events:
372 |
TransparentUpgradeableProxy.0xf6f3bf9d00b52384d77c0b88440f0c216676d7ff221073342ec0606c43ccc40c( 0xf6f3bf9d00b52384d77c0b88440f0c216676d7ff221073342ec0606c43ccc40c, 0x0000000000000000000000004838b106fce9647bdf1e7877bf73ce8b0bad5f97, 00000000000000000000000000000000000000000000000000385a6c7ef0710d )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) |
13.829154583296607416 Eth
Nonce: 1756456
|
13.813240617058934436 Eth
Nonce: 1756457
| 0.01591396623767298 | |
0x6bE457e0...a0f871E67 | (Fee Recipient: 0x6be4...e67) | 0.259204965524828691 Eth | 0.275066986253280032 Eth | 0.015862020728451341 |
Execution Trace
ETH 0.015862020728451341
TransparentUpgradeableProxy.CALL( )
- ETH 0.015862020728451341
0x1d8d19188ef67eb73d82b01301873f0bffb1784c.DELEGATECALL( )
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "@openzeppelin/contracts/proxy/beacon/BeaconProxy.sol";import "@openzeppelin/contracts/proxy/beacon/UpgradeableBeacon.sol";import "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol";import "@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol";import "@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol";// Kept for backwards compatibility with older versions of Hardhat and Truffle plugins.contract AdminUpgradeabilityProxy is TransparentUpgradeableProxy {constructor(address logic, address admin, bytes memory data) payable TransparentUpgradeableProxy(logic, admin, data) {}}// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "./IBeacon.sol";import "../Proxy.sol";import "../ERC1967/ERC1967Upgrade.sol";/*** @dev This contract implements a proxy that gets the implementation address for each call from a {UpgradeableBeacon}.** The beacon address is stored in storage slot `uint256(keccak256('eip1967.proxy.beacon')) - 1`, so that it doesn't* conflict with the storage layout of the implementation behind the proxy.** _Available since v3.4._*/contract BeaconProxy is Proxy, ERC1967Upgrade {/**