IndexerClient class

Algorand provides a standalone daemon algorand-indexer that reads committed blocks from the Algorand blockchain and maintains a local database of transactions and accounts that are searchable and indexed.

A REST API is available which enables application developers to perform rich and efficient queries on accounts, transactions, assets, and so forth.

Inheritance

Constructors

IndexerClient({required String apiUrl, String apiKey = '', String tokenKey = INDEXER_API_TOKEN, Duration connectTimeout = const Duration(seconds: 30), Duration receiveTimeout = const Duration(seconds: 30), Duration sendTimeout = const Duration(seconds: 30), bool debug = false, bool enableGzip = true, Interceptor? logInterceptor, Transformer? transformer})

Properties

client ↔ Dio
The http client
latefinalinherited
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

INDEXER_API_TOKEN → const String