ETH Price: $3,020.91 (-1.20%)

Transaction Decoder

Block:
16978034 at Apr-04-2023 09:00:59 PM +UTC
Transaction Fee:
0.001840537052325 ETH $5.56
Gas Used:
35,625 Gas / 51.66419796 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x57B045F6...dFC9fb92d
0.183971841990773952 Eth
Nonce: 10
0.182131304938448952 Eth
Nonce: 11
0.001840537052325
(builder0x69)
3.378241933084603584 Eth3.378245495584603584 Eth0.0000035625

Execution Trace

ETH 0.15 IronPawGang.mintListed( )
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: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs
pragma solidity ^0.8.4;
import './IERC721A.sol';
/**
* @dev Interface of ERC721 token receiver.
*/
interface ERC721A__IERC721Receiver {
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
/**
* @title ERC721A
*
* @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
* Non-Fungible Token Standard, including the Metadata extension.
* Optimized for lower gas during batch mints.
*
* Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
* starting from `_startTokenId()`.
*
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX