> For the complete documentation index, see [llms.txt](https://docs.ierc20.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ierc20.com/devs/ierc-20/mint.md).

# Mint

In Mint, it is sent to address 0x0000000000000000000000000000000000000000 as in deployment, and the JSON field is guaranteed to be modified to legal content. The nonce has not been used by itself, it has not exceeded the maximum total limit, and it has not exceeded a single number. It is recommended to use a timestamp.

In Mint, we need to specify some required fields.

<table><thead><tr><th width="105.33333333333331">Key</th><th width="125">Required</th><th>Description</th></tr></thead><tbody><tr><td>p</td><td>yes</td><td>protocol name，ierc-20, there is no difference between the two.</td></tr><tr><td>op</td><td>yes</td><td>mint</td></tr><tr><td>tick</td><td>yes</td><td>same as deployment.</td></tr><tr><td>amt</td><td>yes</td><td>Mint quantity, not exceeding the limit.</td></tr><tr><td>nonce</td><td>yes</td><td>unique value, timestamp is recommended.</td></tr></tbody></table>

**Requires attention:**

Do not mint multiple times in the same block.

For example:

```
// mint; send 0eth from self to 0x0000000000000000000000000000000000000000;
// The initiator of the transaction is the receiver
{
    "p":"ierc-20",
    "op":"mint", //mint operation
    "tick":"ethi",
    "amt":"1000", //mint amount
    "nonce":"1"
}
```
