ETH Price: $3,001.30 (-1.63%)

Transaction Decoder

Block:
16978034 at Apr-04-2023 09:00:59 PM +UTC
Transaction Fee:
0.00186905568959892 ETH $5.61
Gas Used:
36,177 Gas / 51.66419796 Gwei

Account State Difference:

  Address   Before After State Difference Code
(builder0x69)
3.378651313784603584 Eth3.378654931484603584 Eth0.0000036177
0xd0DB09ac...b13143528
0.300644136613821432 Eth
Nonce: 46
0.298775080924222512 Eth
Nonce: 47
0.00186905568959892

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