ETH Price: $2,721.97 (+2.97%)

Transaction Decoder

Block:
22399095 at May-02-2025 10:29:47 PM +UTC
Transaction Fee:
0.000011103696898778 ETH $0.03
Gas Used:
29,683 Gas / 0.374075966 Gwei

Emitted Events:

255 TransparentUpgradeableProxy.0xf6f3bf9d00b52384d77c0b88440f0c216676d7ff221073342ec0606c43ccc40c( 0xf6f3bf9d00b52384d77c0b88440f0c216676d7ff221073342ec0606c43ccc40c, 0x0000000000000000000000004838b106fce9647bdf1e7877bf73ce8b0bad5f97, 0000000000000000000000000000000000000000000000000022143da4a403ff )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
106.914928481303730114 Eth
Nonce: 1611324
106.905324973410896105 Eth
Nonce: 1611325
0.009603507892834009
0x6bE457e0...a0f871E67
(Fee Recipient: 0x6be4...e67)
0.124778490517546535 Eth0.134370894713481766 Eth0.009592404195935231

Execution Trace

ETH 0.009592404195935231 TransparentUpgradeableProxy.CALL( )
  • ETH 0.009592404195935231 0x1d8d19188ef67eb73d82b01301873f0bffb1784c.DELEGATECALL( )
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    pragma 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: MIT
    pragma 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 {
    /**
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX