Deploy

To kick off deploying the CRC20 Protocol, start by sending a transaction to yourself, then deploy the JSON. Here are the format specs you'll need to follow:

KeyRequiredDescription

p

yes

protocol name: libra

op

yes

operation type: "deploy" | "mint" | "transfer"

tick

yes

token name, must be unique, case-insensitive

max

yes

max supply

lim

yes

limit for each mint

walletlim

no

limit for each address can maximum mint

difficulty

no

difficulty factor

nonce

no

don't repeat numbers

mintfee

no

mint fee,base on wei

Demo:

data:,{"p":"CRC20","op":"deploy","tick":"TEST","max":"21000000","lim":"1000","walletlim":"10000","difficulty":"4","nonce":"0","mintfee":"10000000000"}
{
  "p": "CRC20",
  "op": "deploy",
  "tick": "ordi",
  "max": "21000000",
  "lim": "1000",
  "walletlim": "10000",
  "difficulty": "4",
  "nonce": "0",
  "mintfee": "10000000000"
}

Last updated