Transaction Hash:
Block:
21306726 at Dec-01-2024 09:20:47 AM +UTC
Transaction Fee:
0.00399020618425833 ETH
$11.05
Gas Used:
397,710 Gas / 10.032954123 Gwei
Emitted Events:
44 |
OwnableDelegateProxy.Upgraded( implementation=AuthenticatedProxy )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x499ADA63...a367861f8 |
0.274304166044499462 Eth
Nonce: 5
|
0.270313959860241132 Eth
Nonce: 6
| 0.00399020618425833 | ||
0xA34E887F...3cC031AaB
Miner
| 4.059886915215654177 Eth | 4.060483480215654177 Eth | 0.000596565 | ||
0xa5409ec9...6DCB077c1 | |||||
0xbC5D3943...14ADbEEA9 |
0 Eth
Nonce: 0
|
0 Eth
Nonce: 1
|
Execution Trace
WyvernProxyRegistry.CALL( )

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