Transaction Hash:
Block:
17764468 at Jul-24-2023 05:31:35 PM +UTC
Transaction Fee:
0.001315261395322408 ETH
$4.55
Gas Used:
21,256 Gas / 61.877182693 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x388C818C...7ccB19297
Miner
| (Lido: Execution Layer Rewards Vault) | 106.268193231128867748 Eth | 106.268195356728867748 Eth | 0.0000021256 | |
0x61181b6a...24B7Beb6C |
0.006029882499469051 Eth
Nonce: 76
|
0.004714621104146643 Eth
Nonce: 77
| 0.001315261395322408 |
Execution Trace
ETH 0.000777
ERC721DropProxy.efef39a1( )
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.10;import {ERC1967Proxy} from "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol";/// @dev Zora NFT Creator Proxy Access Contractcontract ERC721DropProxy is ERC1967Proxy {constructor(address _logic, bytes memory _data)payableERC1967Proxy(_logic, _data){}}// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (proxy/ERC1967/ERC1967Proxy.sol)pragma solidity ^0.8.0;import "../Proxy.sol";import "./ERC1967Upgrade.sol";/*** @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an* implementation address that can be changed. This address is stored in storage in the location specified by* https://eips.ethereum.org/EIPS/eip-1967[EIP1967], so that it doesn't conflict with the storage layout of the* implementation behind the proxy.*/contract ERC1967Proxy is Proxy, ERC1967Upgrade {/*** @dev Initializes the upgradeable proxy with an initial implementation specified by `_logic`.** If `_data` is nonempty, it's used as data in a delegate call to `_logic`. This will typically be an encoded* function call, and allows initializating the storage of the proxy like a Solidity constructor.