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

Was this helpful?

  1. INDEXS PROTOCOL
  2. API Reference
  3. API V1

Tick.Holders

PreviousAddress.BalanceNextBlock.LastNumber

Last updated 1 year ago

Was this helpful?

Example Request

{
  "method": "tick.Holders", // jsonrpc method name
  "id": 1, // request id
  "jsonrpc": "2.0", // jsonrpc version
  "params": [
    10, // page limit
    0, // page offset
    "0xF2f9D2575023D320475ed7875FCDCB9b52787E59", // address
    "avalanche", // chain name
    "asc-20", // protocol
    "crazydog", // tick name
  ]
}

Example Response

{
    "jsonrpc": "2.0",
    "result": {
        "holders": [
            {
                "chain": "avalanche", // chain name
                "protocol": "asc-20", // protocol 
                "tick": "crazydog", // tick name
                "address": "0xF2f9D2575023D320475ed7875FCDCB9b52787E59", // holder address
                "balance": "21000000", // holder balance
                "deploy_hash": "", // deploy hash
                "transfer_type": 0 // transfer type 1.by utxo hash 2.by balance
            }
        ],
        "total": 1, // total records count
        "limit": 10, // current request limit
        "offset": 0 // current request offset
    },
    "id": 1
}
🌲