ETH Price: $2,746.34 (-0.92%)

Transaction Decoder

Block:
12220654 at Apr-11-2021 07:41:14 PM +UTC
Transaction Fee:
0.010479546 ETH $28.78
Gas Used:
83,171 Gas / 126 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x59Fa25D5...8bd7e4e2F
0.014780246890880936 Eth
Nonce: 4102
0.004300700890880936 Eth
Nonce: 4103
0.010479546
(F2Pool Old)
8,213.915838977125635281 Eth8,213.926318523125635281 Eth0.010479546

Execution Trace

AdminUpgradeabilityProxy.9e2ac9fa( )
  • 0x6449ed22142a506d21bd96862b815fe17f044776.9e2ac9fa( )
    • ENJToken.transferFrom( _from=0x59Fa25D5b0dECeac9FFD31e4E8119cA8bd7e4e2F, _to=0x1dd0C7cBF5b420648Fe37EDCdc64cBE30842E3b2, _value=129283472443265654011 )
      File 1 of 2: AdminUpgradeabilityProxy
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // 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.
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

      File 2 of 2: ENJToken
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      pragma solidity ^0.4.15;
      /*
      Utilities & Common Modifiers
      */
      contract Utils {
      /**
      constructor
      */
      function Utils() {
      }
      // validates an address - currently only checks that it isn't null
      modifier validAddress(address _address) {
      require(_address != 0x0);
      _;
      }
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX