Interface BlockchainQueryConfig

Interface for blockchain query configuration. Defines connection parameters for querying the Algorand blockchain.

interface BlockchainQueryConfig {
    algodClient?: any;
    algodPort?: number;
    algodServer?: string;
    algodToken?: string;
    network?: "mainnet" | "testnet" | "localnet";
}

Properties

algodClient?: any

Custom algod client instance

algodPort?: number

Algod server port

algodServer?: string

Algod server URL

algodToken?: string

Algod API token

network?: "mainnet" | "testnet" | "localnet"

Network to query (mainnet, testnet, localnet)