# Mint

{% hint style="info" %} <mark style="color:blue;">**When using an inscription service, exercise caution.**</mark> \ <mark style="color:blue;">Certain services may first inscribe the token to their own address before forwarding it to you, meaning the balance initially resides with the inscription service's address. This could be likened to a game of fetch where the service plays the part of an overly eager Shiba Inu, catching the ball first.</mark>
{% endhint %}

{% code overflow="wrap" %}

```json
{
  "p": "drc-20",
  "op": "mint",
  "tick": "woof",
  "amt": "1000"
}
```

{% endcode %}

**Parameter Descriptions**

<table><thead><tr><th width="103.33333333333331">Key</th><th width="105">Required</th><th>Description</th></tr></thead><tbody><tr><td><code>p</code></td><td>Yes</td><td><strong>Protocol:</strong> Helps other systems identify and process drc-20 events.</td></tr><tr><td><code>op</code></td><td>Yes</td><td><strong>Operation:</strong> Specifies the type of event (Deploy, Mint, Transfer).</td></tr><tr><td><code>tick</code></td><td>Yes</td><td><strong>Ticker:</strong> A 4-letter identifier of the drc-20.</td></tr><tr><td><code>amt</code></td><td>Yes</td><td><strong>Amount to mint:</strong> Specifies the amount of the drc-20 to mint. Must be less than the <code>lim</code> set during deployment.</td></tr></tbody></table>

{% hint style="warning" %} <mark style="color:orange;">**Important Warning:**</mark>

<mark style="color:orange;">Be sure to carefully input the correct values in your JSON object.</mark> \ <mark style="color:orange;">An incorrect ticker, amount greater than the limit, or any other error in the command parameters could result in failure to mint your tokens.</mark> \ <mark style="color:orange;">Review your commands carefully before execution to prevent any mishaps, Shiba Scout!</mark>&#x20;
{% endhint %}

{% hint style="success" %} <mark style="color:green;">You can use this service to check your json file before minting your tokens.</mark>\
[<mark style="color:green;">https://jsonlint.com/</mark>](https://jsonlint.com/)&#x20;
{% endhint %}


---

# 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.doginals.academy/eng/introduction/drc-20-operations/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.
