ETH Price: $3,811.45 (-0.13%)

Transaction Decoder

Block:
12286849 at Apr-22-2021 12:30:19 AM +UTC
Transaction Fee:
0.006094872 ETH $23.23
Gas Used:
64,496 Gas / 94.5 Gwei

Emitted Events:

322 ENJToken.Transfer( _from=[Sender] 0xaaa40c2180b84db849ade830806b4a3576926094, _to=[Receiver] AdminUpgradeabilityProxy, _value=250000000000000000000 )
323 AdminUpgradeabilityProxy.0xa1144a9ee937d96489bd5084ca2d72792545c4f293959fa7db1b8f85e9e254c2( 0xa1144a9ee937d96489bd5084ca2d72792545c4f293959fa7db1b8f85e9e254c2, 0x0c1fa565aa75e05f5135d38c4098943f34274c28931e47b210c8b1ce008dc57f, 0x0000000000000000000000000000000000000000000000000000000000000049, 0000000000000000000000000000000000000000000000000000000000000001, 000000000000000000000000aaa40c2180b84db849ade830806b4a3576926094, 00000000000000000000000000000000000000000000000d8d726b7177a80000 )

Account State Difference:

  Address   Before After State Difference Code
0x1dd0C7cB...30842E3b2
(Nanopool)
3,173.280140692126200369 Eth3,173.286235564126200369 Eth0.006094872
0xAAa40c21...576926094
0.507891444251308087 Eth
Nonce: 2058
0.501796572251308087 Eth
Nonce: 2059
0.006094872
0xF629cBd9...80E2a3B9c

Execution Trace

AdminUpgradeabilityProxy.9e2ac9fa( )
  • 0x6449ed22142a506d21bd96862b815fe17f044776.9e2ac9fa( )
    • ENJToken.transferFrom( _from=0xAAa40c2180b84Db849ade830806b4a3576926094, _to=0x1dd0C7cBF5b420648Fe37EDCdc64cBE30842E3b2, _value=250000000000000000000 ) => ( success=True )
      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