ETH Price: $3,718.75 (-0.26%)

Transaction Decoder

Block:
18633121 at Nov-23-2023 08:05:11 AM +UTC
Transaction Fee:
0.000815979113040549 ETH $3.03
Gas Used:
28,247 Gas / 28.887284067 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x6bE457e0...a0f871E67
(Fee Recipient: 0x6be4...e67)
3.653979880395563287 Eth3.698159793134234652 Eth0.044179912738671365
(beaverbuild)
11.176984574952790602 Eth
Nonce: 510777
11.131988683101078688 Eth
Nonce: 510778
0.044995891851711914

Execution Trace

ETH 0.044179912738671365 TransparentUpgradeableProxy.CALL( )
  • ETH 0.044179912738671365 0xbe3366a14d0c87094deb6dfba667299b4eac489d.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