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.

KeyRequiredDescription

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
}

Last updated