Get Ledgers
Fetch a paginated list of Stellar ledgers using the Blux core SDK.
The getLedgers function returns a paginated list of Stellar ledgers.
The return value contains two properties:
response— the records you can use directlybuilder— exposesnext()andprev()to paginate through results
Type
export type CallBuilderOptions = {
cursor?: string;
limit?: number;
network?: string;
order?: "asc" | "desc";
};
type GetLedgersOptions = CallBuilderOptions & {
ledger?: number | string;
};
type GetLedgersResult = {
builder: LedgerCallBuilder;
response: Horizon.ServerApi.CollectionPage<Horizon.ServerApi.LedgerRecord>;
};Usage
import { core } from "@bluxcc/core";
const result = await core.getLedgers({});