# 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"
}
```


---

# 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://docs.ierc20.com/devs/ierc-20/mint.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.
