MRC20 v0.0.1
Fungible tokens on Blocktrails — Monochrome profile
Demo Token
DEMO
Total Supply
0
Max Supply
21M
States
0
No balances yet. Mint some tokens!
How It Works
MRC20 is a fungible token profile built on Blocktrails. Each operation (mint, transfer, burn) creates a state that can be anchored to Bitcoin via Blocktrails key tweaking.
State Format
{
"op": "urn:mono:op:mint",
"data": { "to": "<pubkey>", "amount": 1000 },
"prev": "<sha256_of_previous_state>",
"seq": 0,
"meta": { "name": "Demo", "symbol": "DEMO", "decimals": 8, "max_supply": 21000000 }
}
Install
npm install mrc20
# CLI
mrc20 init --name "My Token" --symbol MTK
mrc20 mint --to <pubkey> --amount 1000