# ERC 721A Azuki

Introduction:\
ERC-721A was developed by Azuki team

### Overview

Compared to the OpenZeppelin ERC-721 version, ERC-721A is more gas-cost-efficient, especially when minting more NFTs from one collection. For gas cost comparison, assuming 300 gwei and $3500/ETH, see the table below.

\| NUMBER MINTED | USD MINT COST (ENUMERABLE) | USD MINT COST (ERC721A) | DIFFERENCE |\
\| Mint 1 | $162.55 | $80.52 | $82.03 |\
\| Mint 2 | $283.86 | $82.76 | $201.10 |\
\| Mint 3 | $461.84 | $85.00 | $376.84 |\
\| Mint 4 | $526.46 | $87.23 | $439.23 |\
\| Mint 5 | $740.30 | $89.47 | $650.83 |

### How ERC-721A supports gas optimisation:

* Removing duplicate storage from OZ ERC721Enumerable
* Updating the owner’s balance once per batch mint request, instead of per minted NFT
* updating the owner data once per batch mint request, instead of per minted NFT

### Further reading:

* <https://www.erc721a.org/>
* <https://www.azuki.com/erc721a>
* <https://medium.com/@dumbnamenumbers/your-guide-to-erc721a-july-2022-f81f0be84a54>
* <https://github.com/chiru-labs/ERC721A/blob/main/docs/tips.md>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://nft-standards.gitbook.io/nft-standards-wiki/custom-nft-platforms-add-ons/erc-721a-azuki.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
