Transaction Hash:
Block:
19511593 at Mar-25-2024 12:48:11 PM +UTC
Transaction Fee:
0.001982631689852996 ETH
$9.43
Gas Used:
100,516 Gas / 19.724538281 Gwei
Emitted Events:
235 |
ENJToken.Transfer( _from=[Receiver] AdminUpgradeabilityProxy, _to=[Sender] 0x33a755d90921e8ac6f5d659eeed6f1260e45754d, _value=242353105890000000000 )
|
236 |
AdminUpgradeabilityProxy.0x094688369687da4ea01588f737fb420bfc388d5f879ea796314edb4a1a3f12fd( 0x094688369687da4ea01588f737fb420bfc388d5f879ea796314edb4a1a3f12fd, 0xca382bd93b48b19ff198386b8790c31d96472437cb67c04df01cf545d87e29a1, 0x496a645e7edd67671bd31270400eadb79c0b2678dc96392fca1aa42549ad5529 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1dd0C7cB...30842E3b2 | |||||
0x33A755d9...60e45754d |
0.005088998246935126 Eth
Nonce: 13
|
0.00310636655708213 Eth
Nonce: 14
| 0.001982631689852996 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 7.863162555500905718 Eth | 7.863167581300905718 Eth | 0.0000050258 | |
0xF629cBd9...80E2a3B9c |
Execution Trace
AdminUpgradeabilityProxy.5fcf462e( )
0x5d4f0193f5adf132c371c541753d89c077b3f199.5fcf462e( )
-
Null: 0x000...001.b65faba3( )
-
ENJToken.transfer( _to=0x33A755d90921E8aC6F5d659EEeD6F1260e45754d, _value=242353105890000000000 ) => ( 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);_;}