Transaction Hash:
Block:
21998718 at Mar-08-2025 12:56:23 AM +UTC
Transaction Fee:
0.000198855 ETH
$0.50
Gas Used:
397,710 Gas / 0.5 Gwei
Emitted Events:
243 |
OwnableDelegateProxy.Upgraded( implementation=AuthenticatedProxy )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x06e33Df0...DC35D8211 |
0 Eth
Nonce: 0
|
0 Eth
Nonce: 1
| |||
0x41Dc1458...60354a277 |
0.00134087 Eth
Nonce: 0
|
0.001142015 Eth
Nonce: 1
| 0.000198855 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 9.198642823648500789 Eth | 9.198646756239183849 Eth | 0.00000393259068306 | |
0xa5409ec9...6DCB077c1 |
Execution Trace
WyvernProxyRegistry.CALL( )

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