Transaction Hash:
Block:
22093209 at Mar-21-2025 05:40:11 AM +UTC
Transaction Fee:
0.0001391985 ETH
$0.39
Gas Used:
397,710 Gas / 0.35 Gwei
Emitted Events:
624 |
OwnableDelegateProxy.Upgraded( implementation=AuthenticatedProxy )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 20.618588997513072366 Eth | 20.618594784769456446 Eth | 0.00000578725638408 | |
0x7057c0eb...83365f75C |
0.07120239 Eth
Nonce: 7
|
0.0710631915 Eth
Nonce: 8
| 0.0001391985 | ||
0x9D98d324...a89014f2F |
0 Eth
Nonce: 0
|
0 Eth
Nonce: 1
| |||
0xa5409ec9...6DCB077c1 |
Execution Trace
WyvernProxyRegistry.CALL( )

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