@bgd-labs/indexer-client
v1.48.3
Published
This package provides a type-safe client for interacting with the Aave Indexer API.
Downloads
175
Readme
@bgd-labs/indexer-client
This package provides a type-safe client for interacting with the Aave Indexer API.
Regular node.js usage:
import Client from "@bgd-labs/indexer-client";
const stream = await Client.meta.prices_stream({});
for await (const prices of stream) {
console.log(prices);
}