Technical implementation
Last updated
Last updated
Deployments initialize the brc-20. Do not affect state
Mints provide a balance to only the first owner of the mint function inscription
Transfers deduct from the senders balance and add to the receivers balance, only upon the first transfer of the transfer function.
Key | Required? | Description |
---|---|---|
p | Yes | Protocol: Helps other systems identify and process brc-20 events |
op | Yes | Operation: Type of event (Deploy, Mint, Transfer) |
tick | Yes | Ticker: 4 letter identifier of the brc-20 |
max | Yes | Max supply: set max supply of the brc-20 |
lim | No | Mint limit: If letting users mint to themsleves, limit per ordinal |
dec | No | Decimals: set decimal precision, default to 18 |
Key | Required? | Description |
---|---|---|
p | Yes | Protocol: Helps other systems identify and process brc-20 events |
op | Yes | Operation: Type of event (Deploy, Mint, Transfer) |
tick | Yes | Ticker: 4 letter identifier of the brc-20 |
amt | Yes | Amount to mint: States the amount of the brc-20 to mint. Has to be less than "lim" above if stated |
Key | Required? | Description |
---|---|---|
p | Yes | Protocol: Helps other systems identify and process brc-20 events |
op | Yes | Operation: Type of event (Deploy, Mint, Transfer) |
tick | Yes | Ticker: 4 letter identifier of the brc-20 |
amt | Yes | Amount to transfer: States the amount of the brc-20 to transfer. |