Termina
  • Overview
    • Introduction
    • Quickstart
  • Solana Primer
    • Solana Virtual Machine (SVM)
    • Existing Scaling Solutions
    • Why Termina
  • Network Extension Stack
    • Overview
    • FAQs
    • Modules
      • SVM Engine
        • Engine Internals
        • Launching an Instance
      • zkSVM Prover
        • Prover Mechanics
        • Leveraging the zkSVM
      • Data Anchor
        • Data Flow
        • Using the Data Anchor
        • Indexing Data
          • Getting Blobs
            • get_blobs_by_network
            • get_blobs_by_namespace
            • get_blobs_by_blober
            • get_blobs_by_payer
            • get_blobs
          • Getting Payers
            • get_payers_by_network
          • Getting Proofs
            • get_proof_for_blob
            • get_proof
    • Rollups
  • Socials
    • Twitter
    • Discord
    • Website
Powered by GitBook
On this page
  1. Network Extension Stack
  2. Modules
  3. Data Anchor
  4. Indexing Data
  5. Getting Payers

get_payers_by_network

PreviousGetting PayersNextGetting Proofs

Last updated 6 days ago

Retrieves a list of wallet addresses that’ve contributed data blobs to a given network.

post
  • Returns an empty list if no blobs were found.

  • Returns an error if there was a database or RPC failure.

This endpoint identifies all payers responsible for uploading or funding data—deduplicated across the various nodes they may own within a network.

Body
all ofOptional
Responses
200
RPC success with list of payer pubkeys
application/json
400
Invalid request payload
application/json
500
Internal indexer error
application/json
post
POST /get_payers_by_network HTTP/1.1
Host: devnet.indexer.data-anchor.termina.technology
Content-Type: application/json
Accept: */*
Content-Length: 93

{
  "id": "70",
  "jsonrpc": "2.0",
  "method": "get_payers_by_network",
  "params": {
    "network_name": "ping"
  }
}
{
  "jsonrpc": "2.0",
  "id": "70",
  "result": [
    "5G9h4h5K1Jk1L9oLx2YtM3N4P5Q6R7S8T9U0V1W2X3Y4",
    "4Nd1m1c9f9LxFHVfv1m1ChMpV4hV6j3uYVFzh5eRvYV7",
    "7XyB5LzH3Qk9R1S2T3U4V5W6X7Y8Z9A0B1C2D3E4F5G"
  ]
}