Transaction Hash:
Block:
18120027 at Sep-12-2023 11:43:11 AM +UTC
Transaction Fee:
0.00920775 ETH
$24.07
Gas Used:
613,850 Gas / 15 Gwei
Emitted Events:
40 |
TransparentUpgradeableProxy.Upgraded( implementation=0xbe3366a14d0c87094deb6dfba667299b4eac489d )
|
41 |
TransparentUpgradeableProxy.0x7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498( 0x7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498, 0000000000000000000000000000000000000000000000000000000000000001 )
|
42 |
TransparentUpgradeableProxy.AdminChanged( previousAdmin=0x00000000...000000000, newAdmin=0xD491302a...30732b0cb )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1f9090aa...8e676c326
Miner
| 2.581941108903532005 Eth | 2.583836361422230305 Eth | 0.0018952525186983 | ||
0x25023C22...4A13b5E1d |
0.380862496 Eth
Nonce: 2
|
0.371654746 Eth
Nonce: 3
| 0.00920775 | ||
0x6bE457e0...a0f871E67 | (Fee Recipient: 0x6be4...e67) |
0 Eth
Nonce: 0
|
0 Eth
Nonce: 1
|
Execution Trace
TransparentUpgradeableProxy.60806040( )
-
0xbe3366a14d0c87094deb6dfba667299b4eac489d.c4d66de8( )
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "@openzeppelin/contracts/proxy/beacon/BeaconProxy.sol";import "@openzeppelin/contracts/proxy/beacon/UpgradeableBeacon.sol";import "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol";import "@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol";import "@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol";// Kept for backwards compatibility with older versions of Hardhat and Truffle plugins.contract AdminUpgradeabilityProxy is TransparentUpgradeableProxy {constructor(address logic, address admin, bytes memory data) payable TransparentUpgradeableProxy(logic, admin, data) {}}// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "./IBeacon.sol";import "../Proxy.sol";import "../ERC1967/ERC1967Upgrade.sol";/*** @dev This contract implements a proxy that gets the implementation address for each call from a {UpgradeableBeacon}.** The beacon address is stored in storage slot `uint256(keccak256('eip1967.proxy.beacon')) - 1`, so that it doesn't* conflict with the storage layout of the implementation behind the proxy.** _Available since v3.4._*/contract BeaconProxy is Proxy, ERC1967Upgrade {/**