ETH Price: $2,999.66 (+1.97%)

Transaction Decoder

Block:
19492099 at Mar-22-2024 06:58:23 PM +UTC
Transaction Fee:
0.001564987408364373 ETH $4.69
Gas Used:
64,733 Gas / 24.176037081 Gwei

Emitted Events:

177 ENJToken.Transfer( _from=[Sender] 0x5a5343bf8d5aa8dd13c99a373d039eead3916bff, _to=[Receiver] AdminUpgradeabilityProxy, _value=100000000000000000000 )
178 AdminUpgradeabilityProxy.0x76dc03d70b774e49d65617854be6c9411b9e981cfc3f20ef7fffca6b720df7f1( 0x76dc03d70b774e49d65617854be6c9411b9e981cfc3f20ef7fffca6b720df7f1, 0xadbf5d9e9ac66436f27bd9cbd179014e2b7f86c5fccb4734b2a324f08a1adc4d, 0x0000000000000000000000000000000000000000000000000000000000001d28, 0000000000000000000000000000000000000000000000000000000000000001, 0000000000000000000000005a5343bf8d5aa8dd13c99a373d039eead3916bff, 0000000000000000000000000000000000000000000000056bc75e2d63100000 )

Account State Difference:

  Address   Before After State Difference Code
0x1dd0C7cB...30842E3b2
0x5a5343bF...aD3916BFF
0.082507117977147326 Eth
Nonce: 6
0.080942130568782953 Eth
Nonce: 7
0.001564987408364373
(beaverbuild)
16.990000357507166799 Eth16.990051496577166799 Eth0.00005113907
0xF629cBd9...80E2a3B9c

Execution Trace

AdminUpgradeabilityProxy.9e2ac9fa( )
  • 0x5d4f0193f5adf132c371c541753d89c077b3f199.9e2ac9fa( )
    • ENJToken.transferFrom( _from=0x5a5343bF8d5AA8dd13C99a373d039EeaD3916BFF, _to=0x1dd0C7cBF5b420648Fe37EDCdc64cBE30842E3b2, _value=100000000000000000000 ) => ( 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