Transaction Hash:
Block:
14865529 at May-29-2022 08:47:40 AM +UTC
Transaction Fee:
0.005182166937514194 ETH
$13.17
Gas Used:
397,602 Gas / 13.033553497 Gwei
Emitted Events:
102 |
OwnableDelegateProxy.Upgraded( implementation=AuthenticatedProxy )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x6EBaF477...D8C9B131a
Miner
| (Miner: 0x6eb...31a) | 737.057793023772817179 Eth | 737.058389426772817179 Eth | 0.000596403 | |
0x800833C6...4F21B08A5 |
0 Eth
Nonce: 0
|
0 Eth
Nonce: 1
| |||
0xa5409ec9...6DCB077c1 | |||||
0xaAC03355...6a38d1b89 |
0.023604532752893536 Eth
Nonce: 0
|
0.018422365815379342 Eth
Nonce: 1
| 0.005182166937514194 |
Execution Trace
WyvernProxyRegistry.CALL( )

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