> For the complete documentation index, see [llms.txt](https://docs.doginals.academy/eng/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.doginals.academy/eng/introduction/drc-20-operations/deploy.md).

# Deploy

In this guide, we'll use `$WOOF` as our example token for illustrative purposes. However, the principles are exactly the same for your chosen token. Just replace `$WOOF` with the name of your token and you're good to go!

Here's an example of what the command could look like:

```json
{ 
  "p": "drc-20",
  "op": "deploy",
  "tick": "woof",
  "max": "21000000",
  "lim": "1000"
}
```

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

<mark style="color:red;">Once the deployment process is initiated, the parameters set for your drc-20 token, such as ticker, max supply, mint limit, and decimal precision, are final and cannot be modified. Make sure to review your command and its parameters carefully before deployment. Ensuring accuracy at this stage is vital to prevent any issues or undesired results in the future.</mark> \ <mark style="color:red;">Proceed with caution, Shiba Scout! 🐾</mark>
{% endhint %}

**Here's a brief overview of each key in the command:**

<table><thead><tr><th width="110.33333333333331">Key</th><th width="108">Required?</th><th>Description</th></tr></thead><tbody><tr><td>p</td><td>Yes</td><td><strong>Protocol:</strong> This helps other systems identify and process drc-20 events.</td></tr><tr><td>op</td><td>Yes</td><td><strong>Operation:</strong> This defines the type of event (Deploy, Mint, Transfer).</td></tr><tr><td>tick</td><td>Yes</td><td><strong>Ticker:</strong> This is a 4 letter identifier of the drc-20.</td></tr><tr><td>max</td><td>Yes</td><td><strong>Max supply:</strong> This sets the max supply of the drc-20.</td></tr><tr><td>lim</td><td>No</td><td><strong>Mint limit:</strong> This sets the limit per ordinal if users are allowed to mint to themselves.</td></tr><tr><td>dec</td><td>No</td><td><strong>Decimals:</strong> This sets decimal precision, which defaults to 18.</td></tr></tbody></table>

{% 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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.doginals.academy/eng/introduction/drc-20-operations/deploy.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
