QUANTA Documentation
  • Documentation
  • Introduction
    • Fair Trading Protocol
  • Getting Started
    • Building Source Code
    • Running Quanta Node
    • Running Quanta Wallet
    • Running on Docker
  • Testnet
    • Create account
    • Transfer ETH/ERC-20
    • Become a Block Producer
  • Guides
    • Websockets
    • Trading Bot
  • SDK
    • Javascript
  • API
    • Markets
  • Advanced
    • Issuing your own QUANTA Token
    • Deploy your own exchange on AWS
Powered by GitBook
On this page
  • Pre-requisite
  • Creating the transaction

Was this helpful?

  1. Advanced

Issuing your own QUANTA Token

PreviousMarketsNextDeploy your own exchange on AWS

Last updated 5 years ago

Was this helpful?

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

Lifetime user

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

Setup Quanta Wallet