Search for transactions with notes sent to/from an address.
Address to search for
OptionalafterRound: numberOnly return transactions after this round
Optionallimit: numberMaximum number of transactions to return
Search for transactions between two addresses.
First address
Second address
OptionalafterRound: numberOnly return transactions after this round
Optionallimit: numberMaximum number of transactions to return
OptionalsearchSearch for transactions with cursor-based pagination.
Returns a page of transactions and an optional nextToken for fetching
the next page. Implementations should use the Algorand indexer's native
next-token pagination when available.
This method is optional. When not implemented, discovery functions
fall back to searchTransactions with a single batch.
Address to search for
Optionaloptions: { afterRound?: number; limit?: number; nextToken?: string }Pagination options
Wait for a transaction to be indexed.
Transaction ID to wait for
OptionaltimeoutSecs: numberMaximum seconds to wait (default: 30)
Interface for interacting with an Algorand indexer.
Implementations should wrap the algosdk Indexer client or equivalent.