Transaction Hash:
Block:
22042535 at Mar-14-2025 03:48:59 AM +UTC
Transaction Fee:
0.00015361101167166 ETH
$0.57
Gas Used:
397,710 Gas / 0.386238746 Gwei
Emitted Events:
107 |
OwnableDelegateProxy.Upgraded( implementation=AuthenticatedProxy )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x170c1084...1Fd04F217 |
0 Eth
Nonce: 0
|
0 Eth
Nonce: 1
| |||
0x317f95cF...11673be24 |
0.00196431 Eth
Nonce: 0
|
0.00181069898832834 Eth
Nonce: 1
| 0.00015361101167166 | ||
0x98ed2d46...3eA4d25C1
Miner
| (MEV Builder: 0x98ed...5c1) | 1.051035665969878328 Eth | 1.051042538405837108 Eth | 0.00000687243595878 | |
0xa5409ec9...6DCB077c1 |
Execution Trace
WyvernProxyRegistry.CALL( )

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