ETH Price: $2,972.13 (-0.98%)

Transaction Decoder

Block:
19504085 at Mar-24-2024 11:23:59 AM +UTC
Transaction Fee:
0.001394438728478085 ETH $4.14
Gas Used:
100,533 Gas / 13.870457745 Gwei

Emitted Events:

341 ENJToken.Transfer( _from=[Receiver] AdminUpgradeabilityProxy, _to=[Sender] 0xace7a27e5a79a62d056c5e7a38ad61b4ca86b4f3, _value=66008105000000000000 )
342 AdminUpgradeabilityProxy.0x094688369687da4ea01588f737fb420bfc388d5f879ea796314edb4a1a3f12fd( 0x094688369687da4ea01588f737fb420bfc388d5f879ea796314edb4a1a3f12fd, 0x0dae7ab0a484ee23a4c5fbee56ff29aa2b881aba8730f7a4bfedab25f8db381b, 0x911d0ee9e07d8784ecb67b915d7b96849376ab6ac0be2a625f20d1cde03a14ee )

Account State Difference:

  Address   Before After State Difference Code
0x1dd0C7cB...30842E3b2
(beaverbuild)
6.186766348702971321 Eth6.186775396672971321 Eth0.00000904797
0xaCe7A27e...4ca86B4f3
0.001537859204961174 Eth
Nonce: 14
0.000143420476483089 Eth
Nonce: 15
0.001394438728478085
0xF629cBd9...80E2a3B9c

Execution Trace

AdminUpgradeabilityProxy.5fcf462e( )
  • 0x5d4f0193f5adf132c371c541753d89c077b3f199.5fcf462e( )
    • Null: 0x000...001.35136f3b( )
    • ENJToken.transfer( _to=0xaCe7A27e5A79A62d056C5E7a38ad61B4ca86B4f3, _value=66008105000000000000 ) => ( 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