> For the complete documentation index, see [llms.txt](https://quanta.gitbook.io/documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://quanta.gitbook.io/documentation/advanced/issuing-your-own-quanta-token.md).

# Issuing your own QUANTA Token

QUANTA blockchain is a multi-asset blockchain where you can issue your own asset. Some use cases may be :

* Selling tokens to investors or crowdsale
* Gateway to another token
* Utility token for a decentralized application
* Issuing stable currency

Features:

* Choose 3 character symbols or longer
* Collect market fees when this asset is traded.
* Whitelist/blacklist for controlling access to this token
* Multi-sig issuer

### Pre-requisite

[Setup Quanta Wallet](/documentation/getting-started/running-quanta-wallet.md)

Lifetime user&#x20;

### Creating the transaction

The example below creates the QAIR coin at 5 precision, with a 0.1% (100 precision) market fee collected per trade.

```
create_asset alpha "QAIR" 5 { "max_supply" : 100000000000, "market_fee_percent" : 10, "max_market_fee" : 1000000000, "issuer_permissions" : 79, "flags" : 1, "core_exchange_rate" : { "base": { "amount": 1, "asset_id": "1.3.0" }, "quote": { "amount": 1, "asset_id": "1.3.1" } }, "whitelist_authorities" : [], "blacklist_authorities" : [], "whitelist_markets" : [], "blacklist_markets" : [], "description" : "My fancy description" } null true
```

Once the asset is created, you can issue yourself or any other account up to the max\_supply.

```
issue_asset quanta_foundation 10000000000 QAIR "comment" true
```
