Transaction Hash:
Block:
14865510 at May-29-2022 08:42:40 AM +UTC
Transaction Fee:
0.004814390779982028 ETH
$12.05
Gas Used:
397,602 Gas / 12.108567814 Gwei
Emitted Events:
409 |
OwnableDelegateProxy.Upgraded( implementation=AuthenticatedProxy )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2DaA3596...79C930E5e
Miner
| (Poolin 2) | 1,989.775753906122219347 Eth | 1,989.776350309122219347 Eth | 0.000596403 | |
0xa5409ec9...6DCB077c1 | |||||
0xb9f5baD0...5c92c4F95 |
0 Eth
Nonce: 0
|
0 Eth
Nonce: 1
| |||
0xe6015C03...69da33427 |
0.143552083043081812 Eth
Nonce: 3
|
0.138737692263099784 Eth
Nonce: 4
| 0.004814390779982028 |
Execution Trace
WyvernProxyRegistry.CALL( )

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