Transaction Hash:
Block:
21435548 at Dec-19-2024 09:03:23 AM +UTC
Transaction Fee:
0.00410359472468532 ETH
$17.53
Gas Used:
397,710 Gas / 10.318057692 Gwei
Emitted Events:
191 |
OwnableDelegateProxy.Upgraded( implementation=AuthenticatedProxy )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2dDEc6BA...4AdE849b5 |
0 Eth
Nonce: 0
|
0 Eth
Nonce: 1
| |||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 9.142621150662887141 Eth | 9.143006929362887141 Eth | 0.0003857787 | |
0xa1def1fb...AB63BDf32 |
0.11851664611725479 Eth
Nonce: 2
|
0.11441305139256947 Eth
Nonce: 3
| 0.00410359472468532 | ||
0xa5409ec9...6DCB077c1 |
Execution Trace
WyvernProxyRegistry.CALL( )

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