Transaction Hash:
Block:
22477642 at May-13-2025 11:44:11 PM +UTC
Transaction Fee:
0.00079542 ETH
$2.02
Gas Used:
397,710 Gas / 2 Gwei
Emitted Events:
195 |
OwnableDelegateProxy.Upgraded( implementation=AuthenticatedProxy )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1f9090aa...8e676c326
Miner
| 5.508385496555071499 Eth | 5.508687115381025609 Eth | 0.00030161882595411 | ||
0x9B3d4B0E...58d64E549 |
0.002430803448184261 Eth
Nonce: 4
|
0.001635383448184261 Eth
Nonce: 5
| 0.00079542 | ||
0xa5409ec9...6DCB077c1 | |||||
0xf3BFeA78...451AC93B5 |
0 Eth
Nonce: 0
|
0 Eth
Nonce: 1
|
Execution Trace
WyvernProxyRegistry.CALL( )

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