Transaction Hash:
Block:
20201942 at Jun-30-2024 03:53:59 AM +UTC
Transaction Fee:
0.0000380104322 ETH
$0.10
Gas Used:
31,678 Gas / 1.1999 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 16.448499779093956027 Eth | 16.448501636760142117 Eth | 0.00000185766618609 | |
0x9BaE70fF...69Ad99791 |
0.0003687428522 Eth
Nonce: 5
|
0.00033073242 Eth
Nonce: 6
| 0.0000380104322 |
Execution Trace
AdminUpgradeabilityProxy.9e2ac9fa( )
-
0x5d4f0193f5adf132c371c541753d89c077b3f199.9e2ac9fa( )
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.6.0;import './UpgradeabilityProxy.sol';/*** @title AdminUpgradeabilityProxy* @dev This contract combines an upgradeability proxy with an authorization* mechanism for administrative tasks.* All external functions in this contract must be guarded by the* `ifAdmin` modifier. See ethereum/solidity#3864 for a Solidity* feature proposal that would enable this to be done automatically.*/contract AdminUpgradeabilityProxy is UpgradeabilityProxy {/*** Contract constructor.* @param _logic address of the initial implementation.* @param _admin Address of the proxy administrator.* @param _data Data to send as msg.data to the implementation to initialize the proxied contract.* It should include the signature and the parameters of the function to be called, as described in* https://solidity.readthedocs.io/en/v0.4.24/abi-spec.html#function-selector-and-argument-encoding.* This parameter is optional, if no data is given the initialization call to proxied contract will be skipped.*/constructor(address _logic, address _admin, bytes memory _data) UpgradeabilityProxy(_logic, _data) public payable {assert(ADMIN_SLOT == bytes32(uint256(keccak256('eip1967.proxy.admin')) - 1));_setAdmin(_admin);}/**