Transaction Hash:
Block:
18968866 at Jan-09-2024 10:39:23 AM +UTC
Transaction Fee:
0.000422746816395318 ETH
$1.25
Gas Used:
28,247 Gas / 14.966078394 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) |
30.762248122948863595 Eth
Nonce: 157090
|
30.727100933543293472 Eth
Nonce: 157091
| 0.035147189405570123 | |
0x6bE457e0...a0f871E67 | (Fee Recipient: 0x6be4...e67) | 12.173488408387484137 Eth | 12.208212850976658942 Eth | 0.034724442589174805 |
Execution Trace
ETH 0.034724442589174805
TransparentUpgradeableProxy.CALL( )
- ETH 0.034724442589174805
0xbe3366a14d0c87094deb6dfba667299b4eac489d.DELEGATECALL( )
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 {/**