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

Deploy

Deployment content encoding is sent to any specific address . If the JSON is legal and the check has not been deployed, it is a valid deployment.

When deploying, we need to specify some required fields.

Key
Required
Description

p

yes

protocol name. asc-20

op

yes

Use "deploy".

tick

yes

token name.

max

yes

max supply.

lim

yes

limit for each mint.

Note:

  • tick itself is case-sensitive, but it is recommended that the index be case-insensitive.

  • Since different indexes have different versions of JSON, here is a restriction, the last field of JSON cannot have a comma (,).

{
    "p":"asc-20", 
    "op":"deploy", 
    "tick":"aval", 
    "max":"2100000000000000", //max supply
    "lim":"100000000", //limit for each mint
}
PreviousMintNextUTXO Transfer

Last updated 1 year ago