Transaction Hash:
Block:
8428052 at Aug-26-2019 08:39:30 PM +UTC
Transaction Fee:
0.00233886 ETH
$6.54
Gas Used:
389,810 Gas / 6 Gwei
Emitted Events:
8 |
OwnableDelegateProxy.Upgraded( implementation=AuthenticatedProxy )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4287fF85...526c3b4d6 |
0 Eth
Nonce: 0
|
0 Eth
Nonce: 1
| |||
0x829BD824...93333A830
Miner
| (F2Pool Old) | 3,997.553696567822110722 Eth | 3,997.556035427822110722 Eth | 0.00233886 | |
0xa5409ec9...6DCB077c1 | |||||
0xD1898665...6df34AC33 |
0.009009067060512796 Eth
Nonce: 14
|
0.006670207060512796 Eth
Nonce: 15
| 0.00233886 |
Execution Trace
WyvernProxyRegistry.CALL( )

OwnableDelegateProxy.60806040( )
-
AuthenticatedProxy.initialize( addrUser=0xD1898665a01A91AC10bD2C6cb1899336df34AC33, addrRegistry=0xa5409ec958C83C3f309868babACA7c86DCB077c1 )
-
File 1 of 3: WyvernProxyRegistry
File 2 of 3: OwnableDelegateProxy
File 3 of 3: AuthenticatedProxy
12345678910111213141516pragma solidity ^0.4.13;contract Ownable {address public owner;event OwnershipRenounced(address indexed previousOwner);event OwnershipTransferred(address indexed previousOwner,address indexed newOwner);/*** @dev The Ownable constructor sets the original `owner` of the contract to the sender* account.
File 2 of 3: OwnableDelegateProxy
12345678910111213141516contract OwnedUpgradeabilityStorage {// Current implementationaddress internal _implementation;// Owner of the contractaddress private _upgradeabilityOwner;/*** @dev Tells the address of the owner* @return the address of the owner*/function upgradeabilityOwner() public view returns (address) {return _upgradeabilityOwner;}
File 3 of 3: AuthenticatedProxy
12345678910111213141516pragma solidity ^0.4.13;contract Ownable {address public owner;event OwnershipRenounced(address indexed previousOwner);event OwnershipTransferred(address indexed previousOwner,address indexed newOwner);/*** @dev The Ownable constructor sets the original `owner` of the contract to the sender* account.