Transaction Hash:
Block:
22014391 at Mar-10-2025 05:29:47 AM +UTC
Transaction Fee:
0.00017406162258318 ETH
$0.44
Gas Used:
397,710 Gas / 0.437659658 Gwei
Emitted Events:
1135 |
OwnableDelegateProxy.Upgraded( implementation=AuthenticatedProxy )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 9.529959324962496706 Eth | 9.529972897472865916 Eth | 0.00001357251036921 | |
0x6414AeF1...FcaED083b |
0 Eth
Nonce: 0
|
0 Eth
Nonce: 1
| |||
0xa5409ec9...6DCB077c1 | |||||
0xAd08cBDF...01afDDC28 |
0.000547156 Eth
Nonce: 1
|
0.00037309437741682 Eth
Nonce: 2
| 0.00017406162258318 |
Execution Trace
WyvernProxyRegistry.CALL( )

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