Transaction Hash:
Block:
14865513 at May-29-2022 08:43:42 AM +UTC
Transaction Fee:
0.005057024279306328 ETH
$13.49
Gas Used:
397,602 Gas / 12.718809964 Gwei
Emitted Events:
343 |
OwnableDelegateProxy.Upgraded( implementation=AuthenticatedProxy )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x52bc44d5...b7d7bE3b5
Miner
| (Nanopool) | 2,879.596640889873871296 Eth | 2,879.597237292873871296 Eth | 0.000596403 | |
0xa5409ec9...6DCB077c1 | |||||
0xc8CD0233...Da5bd0460 |
0 Eth
Nonce: 0
|
0 Eth
Nonce: 1
| |||
0xDF1F333f...6f80B0ddF |
0.066179903853080772 Eth
Nonce: 42
|
0.061122879573774444 Eth
Nonce: 43
| 0.005057024279306328 |
Execution Trace
WyvernProxyRegistry.CALL( )

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