ETH Price: $2,682.87 (+6.85%)

Transaction Decoder

Block:
20453080 at Aug-04-2024 05:24:59 AM +UTC
Transaction Fee:
0.00047499 ETH $1.27
Gas Used:
31,666 Gas / 15 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x56F8c89D...5F25eba30
0.010400204863439 Eth
Nonce: 10
0.009925214863439 Eth
Nonce: 11
0.00047499
(beaverbuild)
17.490253196591999393 Eth17.490694972254493325 Eth0.000441775662493932

Execution Trace

AdminUpgradeabilityProxy.9e2ac9fa( )
  • 0x5d4f0193f5adf132c371c541753d89c077b3f199.9e2ac9fa( )
    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.6.0;
    import './UpgradeabilityProxy.sol';
    /**
    * @title AdminUpgradeabilityProxy
    * @dev This contract combines an upgradeability proxy with an authorization
    * mechanism for administrative tasks.
    * All external functions in this contract must be guarded by the
    * `ifAdmin` modifier. See ethereum/solidity#3864 for a Solidity
    * feature proposal that would enable this to be done automatically.
    */
    contract AdminUpgradeabilityProxy is UpgradeabilityProxy {
    /**
    * Contract constructor.
    * @param _logic address of the initial implementation.
    * @param _admin Address of the proxy administrator.
    * @param _data Data to send as msg.data to the implementation to initialize the proxied contract.
    * It should include the signature and the parameters of the function to be called, as described in
    * https://solidity.readthedocs.io/en/v0.4.24/abi-spec.html#function-selector-and-argument-encoding.
    * This parameter is optional, if no data is given the initialization call to proxied contract will be skipped.
    */
    constructor(address _logic, address _admin, bytes memory _data) UpgradeabilityProxy(_logic, _data) public payable {
    assert(ADMIN_SLOT == bytes32(uint256(keccak256('eip1967.proxy.admin')) - 1));
    _setAdmin(_admin);
    }
    /**
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX