ETH Price: $3,641.19 (-2.33%)

Transaction Decoder

Block:
16971028 at Apr-03-2023 09:02:59 PM +UTC
Transaction Fee:
0.00427842906665104 ETH $15.58
Gas Used:
53,390 Gas / 80.135401136 Gwei

Account State Difference:

  Address   Before After State Difference Code
2.135618192242824679 Eth2.135623531242824679 Eth0.000005339
0x617A1814...4D988Ae16
0.634927502266896492 Eth
Nonce: 184
0.630649073200245452 Eth
Nonce: 185
0.00427842906665104

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