Page cover image

Recipes

DMT Spirit

DMT Spirit is based on Deploy, Mint, Transfer Operation and inscribe the OP behavior on blockchain.

This means fair mint, every user can get the assets in fair chance, there will not be any project owner, the assets economics based on community.

// Example
Deploy: 
{ 
    "p": "brc-20", 
    "op": "deploy", 
    "tick": "publish0xtoken", 
    "max": "2100000", 
    "lim": "1000" 
}

Mint: 
{ 
    "p": "brc-20", 
    "op": "mint", 
    "tick": "publish0xtoken", 
    "amt": "1000" 
}

Transfer: 
{
    "p": "brc-20", 
    "op": "transfer", 
    "tick": "publish0xtoken", 
    "amt": "10" 
}

Deploy

// Some code
{ 
    "p": "brc-20", 
    "op": "deploy", 
    "tick": "publish0xtoken", 
    "max": "2100000", 
    "lim": "1000" 
}

Mint

// Some code
{ 
    "p": "brc-20", 
    "op": "mint", 
    "tick": "publish0xtoken", 
    "amt": "1000" 
}

Transfer

BRC20 style

BRC20 style inscriptions use the follow data and UTXO to inscribe the transfer event on blockchain.

// Transfer
{ 
    "p": "brc-20", 
    "op": "transfer", 
    "tick": "ordi", 
    "amt": "10" 
}

Last updated

Was this helpful?