Transaction Hash:
Block:
14004371 at Jan-14-2022 03:17:37 PM +UTC
Transaction Fee:
0.068490501585857496 ETH
$129.96
Gas Used:
397,602 Gas / 172.258946348 Gwei
Emitted Events:
323 |
OwnableDelegateProxy.Upgraded( implementation=AuthenticatedProxy )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3Bb2272D...23973D0eb |
9.59181262 Eth
Nonce: 2
|
9.523322118414142504 Eth
Nonce: 3
| 0.068490501585857496 | ||
0x5E4C42F8...E29AcEF34 |
0 Eth
Nonce: 0
|
0 Eth
Nonce: 1
| |||
0xa5409ec9...6DCB077c1 | |||||
0xc365c331...C4058C8E1
Miner
| (Binance Pool) | 14,785.270858287764953713 Eth | 14,785.279959817238118435 Eth | 0.009101529473164722 |
Execution Trace
WyvernProxyRegistry.CALL( )

OwnableDelegateProxy.60806040( )
-
AuthenticatedProxy.initialize( addrUser=0x3Bb2272DDC716eaFB7Ef8cF8060267F23973D0eb, 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.