ETH Price: $3,741.85 (-0.60%)

Transaction Decoder

Block:
19379035 at Mar-06-2024 10:11:59 PM +UTC
Transaction Fee:
0.00954674 ETH $35.72
Gas Used:
100,492 Gas / 95 Gwei

Emitted Events:

266 ENJToken.Transfer( _from=[Receiver] AdminUpgradeabilityProxy, _to=[Sender] 0xd81390c13be360a939dc3e345273a38e3106d514, _value=54950000000000000000 )
267 AdminUpgradeabilityProxy.0x094688369687da4ea01588f737fb420bfc388d5f879ea796314edb4a1a3f12fd( 0x094688369687da4ea01588f737fb420bfc388d5f879ea796314edb4a1a3f12fd, 0x84b00ee399e8b2269aca3acab06df3c5b66545641c236f75c3c6967b446ed991, 0x4cf693e591a9f317d94563bc21c47a5cd4eeed9b159c44d563a4b8172e17f554 )

Account State Difference:

  Address   Before After State Difference Code
0x1dd0C7cB...30842E3b2
(Titan Builder)
91.245262277896187858 Eth91.245268061403732498 Eth0.00000578350754464
0xd81390c1...e3106d514
0.017386118882479263 Eth
Nonce: 59
0.007839378882479263 Eth
Nonce: 60
0.00954674
0xF629cBd9...80E2a3B9c

Execution Trace

AdminUpgradeabilityProxy.5fcf462e( )
  • 0x5d4f0193f5adf132c371c541753d89c077b3f199.5fcf462e( )
    • Null: 0x000...001.6aef4a50( )
    • ENJToken.transfer( _to=0xd81390c13bE360A939dC3E345273a38e3106d514, _value=54950000000000000000 ) => ( 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