UXUY Indexer
  • INTRODUCTION
    • 🎃Overview
    • 🤓Protocol Highlights
    • 📽️Feature Highlights
    • 🛣️Roadmap
  • 🌲INDEXS PROTOCOL
    • Recipes
    • Inscriptions RFC
    • Supported
    • Partner
    • Work Mechanism
      • Arch
      • INDS
    • Quick Start
    • Indexer
      • Get Started
      • Configuration
      • Running Indexer & API Server
      • API
      • Explorer
    • API Reference
      • About
      • API V1
        • Inscription.All
        • Inscription.Tick
        • Address.Transactions
        • Address.Balances
        • Address.Balance
        • Tick.Holders
        • Block.LastNumber
        • Tool.InscriptionTxOperate
        • Transaction.Info
      • API V1 Specification
      • API V2
        • Inds getTicks
        • Inds getTransactionByAddress
        • Inds getBalancesByAddress
        • Inds getHoldersByTick
        • Inds getLastBlockNumberIndexed
        • Inds getTickByCallData
        • Inds getTransactionByHash
        • Inds getTransactions
        • Inds getInscriptions
        • Inds getInscriptionTxOperate
        • Index getInscriptionByTick
        • Inds getAddressBalance
        • Inds getTickBriefs
        • Inds getAllChains
        • Inds search
      • API V2 Specification
    • Changelog
      • Version Alpha
    • Team
  • 🪄INDEXS FEATURES
    • Index
    • List
  • 🔐RISK & SECURITY
    • Credit Risk
  • 🌌ECOSYSTEM
    • Overview
  • 📚INDEXS GUIDES
    • Guides Overview
  • 🧙‍♂️FAQS
    • General
    • Resources
  • 💼WE'RE HIRING!
    • Open Positions
Powered by GitBook
On this page
  • DMT Spirit
  • Deploy
  • Mint
  • Transfer
  • BRC20 style

Was this helpful?

  1. INDEXS PROTOCOL

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" 
}

PreviousRoadmapNextInscriptions RFC

Last updated 1 year ago

Was this helpful?

🌲
Page cover image