ETH Price: $4,574.60 (-2.38%)

Transaction Decoder

Block:
15738179 at Oct-13-2022 09:03:47 AM +UTC
Transaction Fee:
0.000352406129024016 ETH $1.61
Gas Used:
28,272 Gas / 12.464846103 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Eden Network: Builder)
3.198424593946880255 Eth3.198467001946880255 Eth0.000042408
0xD5fF53f4...0E97Dc724
0.195319011028202731 Eth
Nonce: 2059
0.194966604899178715 Eth
Nonce: 2060
0.000352406129024016

Execution Trace

ZoraNFTCreatorProxy.3857fb13( )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.10;
import {ERC1967Proxy} from "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol";
/// @dev Zora NFT Creator Proxy Access Contract
contract ZoraNFTCreatorProxy is ERC1967Proxy {
constructor(address _logic, bytes memory _data)
payable
ERC1967Proxy(_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.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX