Transaction Hash:
Block:
19398791 at Mar-09-2024 04:39:23 PM +UTC
Transaction Fee:
0.005543102268459756 ETH
$21.82
Gas Used:
83,421 Gas / 66.447324636 Gwei
Emitted Events:
224 |
ENJToken.Transfer( _from=[Receiver] AdminUpgradeabilityProxy, _to=[Sender] 0xc6fb2f5d0c537d353772eef62584429892666320, _value=5491419300000000000 )
|
225 |
AdminUpgradeabilityProxy.0x094688369687da4ea01588f737fb420bfc388d5f879ea796314edb4a1a3f12fd( 0x094688369687da4ea01588f737fb420bfc388d5f879ea796314edb4a1a3f12fd, 0x2ad2fbb55509b1f7797c6561bc9cbcac06d86630e56adcc7da137b797c9dda6c, 0xb6a6a85d8ebc57be47f1fb51b1a6391d8269f93056cc7b299998d9b8aa2e9137 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1dd0C7cB...30842E3b2 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 9.021002023380054882 Eth | 9.021003547016736228 Eth | 0.000001523636681346 | |
0xC6fb2F5D...892666320 |
0.0058829677 Eth
Nonce: 25
|
0.000339865431540244 Eth
Nonce: 26
| 0.005543102268459756 | ||
0xF629cBd9...80E2a3B9c |
Execution Trace
AdminUpgradeabilityProxy.5fcf462e( )
0x5d4f0193f5adf132c371c541753d89c077b3f199.5fcf462e( )
-
Null: 0x000...001.6379ac24( )
-
ENJToken.transfer( _to=0xC6fb2F5D0C537D353772eEf62584429892666320, _value=5491419300000000000 ) => ( 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);_;}