ASC-20 AVAX MARKET
  • INTRODUCTION
    • Overview
    • Transaction Model
    • Refunding Design
  • DEVELOPERS
    • Mint
    • Deploy
    • UTXO Transfer
  • GETTING STARTED
    • How to Mint
    • How to Deploy
    • How to Transfer
    • Balance
    • Market
  • COMMUNITY
    • Open Source
    • Links
  • ROADMAP
Powered by GitBook
On this page
  1. DEVELOPERS

Mint

In Mint, it is sent to the minter's address as in deployment, and the JSON field is guaranteed to be modified to legal content. It has not exceeded the maximum total limit, and it has not exceeded a single number.

While in Mint, we need to specify some required fields.

Key
Required
Description

p

yes

protocol name,asc-20.

op

yes

mint

tick

yes

same as deployment.

amt

yes

Mint quantity, not exceeding the limit.

Note: Do not mint multiple times in the same block.

// The initiator of the transaction is the receiver
{
    "p":"asc-20",
    "op":"mint", //mint operation
    "tick":"aval",
    "amt":"100000000", //mint amount
}
PreviousDEVELOPERSNextDeploy

Last updated 1 year ago