# Mint

data:,{"p":"escc-20","op":"mint","tick":"escc","amt":"3"}

```json
{ 
  "p": "escc-20",
  "op": "mint",
  "tick": "escc",
  "amt": "3"
}
```

<table><thead><tr><th width="160">Param</th><th>Required</th><th width="204">Definition</th><th>Example</th></tr></thead><tbody><tr><td>p</td><td>Yes</td><td>Protocole's name</td><td>escc-20</td></tr><tr><td>op</td><td>Yes</td><td>Operation's name</td><td>Mint token</td></tr><tr><td>tick</td><td>Yes</td><td>Token's name</td><td>escc</td></tr><tr><td>amt</td><td>Yes</td><td>Amount get by mint</td><td>3</td></tr></tbody></table>

> * **"p": "escc-20"**: This represents the protocol identifier, named "escc-20".
> * **"op": "mint"**: Indicates the operation type, "mint", which in blockchain terminology refers to the creation of new tokens.
> * **"tick": "escc"**: Symbol for the token, which is "escc".
> * **"amt": "3"**: Specifies the amount for the operation, in this case, "3". In the context of minting, this would likely mean that 3 units of the "free" token are to be created.
