Transaction Hash:
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 | ||
---|---|---|---|---|---|
0x1dd0C7cB...30842E3b2 | |||||
0x52bc44d5...b7d7bE3b5
Miner
| (Nanopool) | 3,173.280140692126200369 Eth | 3,173.286235564126200369 Eth | 0.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
File 2 of 2: ENJToken
12345678910111213141516// SPDX-License-Identifier: MITpragma 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.
File 2 of 2: ENJToken
12345678910111213141516pragma solidity ^0.4.15;/*Utilities & Common Modifiers*/contract Utils {/**constructor*/function Utils() {}// validates an address - currently only checks that it isn't nullmodifier validAddress(address _address) {require(_address != 0x0);_;}