# Mintable Tokens

Mintable tokens are a type of token created on the Terra Classic blockchain using the CW-20 standard. These tokens have the potential to be minted (created) by a designated "minter" at any time. However, this feature can be a concern for investors as it can lead to inflation and dilution of token value.

### The Importance of UnMintable Tokens:

* **Preservation of Value**: Non-mintable tokens, where the minting privilege has been renounced, offer greater stability and potential value appreciation.&#x20;
* **Investor Confidence**: Investors often prefer tokens with a fixed total supply, as it provides a sense of security and limits the potential for manipulation.&#x20;

### Checking Mintable Status:

To determine if a token is mintable, you can examine on [LuncScan.com](https://luncscan.com/tokens). Look for the mintable property of each token.

<figure><img src="/files/Q6LzX2KVuivBMO8zwkB1" alt=""><figcaption></figcaption></figure>

### Technically Checking Minter Status:

To determine if a token is mintable, you can examine its contract code on a blockchain. Look for the `minter` property. If it's set to a specific address, the token is mintable. If it's `null`, the token is non-mintable.

### Example:

#### Elon Token (mintable)

The `minter` property is set to a specific address, indicating that the token <mark style="background-color:orange;">can still be minted</mark>.

<https://terra-classic.publicnode.com/cosmwasm/wasm/v1/contract/terra13d6xlk4d6cfa6c5c7n2ffua5d5fk5ggfq8vsxr34xnxr07nmke0qajzu8y/smart/eyJtaW50ZXIiOnt9fQ%3D%3D>

```
{
  "data": {
    "minter": "terra1u00qh4pqa22ku6350zqu7yjn9nzutdkxx0l004",
    "cap": "700000000000000000000"
  }
}
```

#### Juris Protocol (unmintable)

The `minter` property is `null`, and the creator has renounced their `admin rights`, making the token <mark style="background-color:green;">unmintable</mark>.&#x20;

<https://terra-classic.publicnode.com/cosmwasm/wasm/v1/contract/terra1vhgq25vwuhdhn9xjll0rhl2s67jzw78a4g2t78y5kz89q9lsdskq2pxcj2/smart/eyJtaW50ZXIiOnt9fQ%3D%3D>

```
{
  "data": null
}
```

### Renouncing Minter Privileges:

If you're a token creator and want to make your token unmintable, you need to renounce both the `minter` and `admin` privileges. This ensures that no one can mint new tokens in the future.

Note: The process for renouncing these privileges may vary depending on the specific token contract. It's recommended to consult with developers or experts familiar with the Terra Classic ecosystem for guidance.

### Conclusion:

When investing in LUNC-based tokens, it's crucial to understand the mintability status. Unmintable tokens generally offer greater stability and potential value appreciation. By checking the minter property and ensuring that both minter and admin privileges are renounced, you can identify tokens with a more secure and predictable supply.


---

# 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://luncscan.gitbook.io/luncscan/resources/mintable-tokens.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.
