UNPKG

@stellar/stellar-sdk

Version:

A library for working with the Stellar network, including communication with the Horizon and Soroban RPC servers.

55 lines (54 loc) 2.83 kB
import { Asset } from "../base/index.js"; import { CallBuilder } from "./call_builder.js"; import { ServerApi } from "./server_api.js"; import type { HttpClient } from "../http-client/index.js"; /** * Creates a new {@link AccountCallBuilder} pointed to server defined by `serverUrl`. * * Do not create this object directly, use {@link Horizon.Server.accounts}. * * @see {@link https://developers.stellar.org/docs/data/horizon/api-reference/resources/list-all-accounts | All Accounts} * * @param serverUrl - Horizon server URL. */ export declare class AccountCallBuilder extends CallBuilder<ServerApi.CollectionPage<ServerApi.AccountRecord>> { constructor(serverUrl: URL, httpClient: HttpClient); /** * Returns information and links relating to a single account. * The balances section in the returned JSON will also list all the trust lines this account has set up. * * @see {@link https://developers.stellar.org/docs/data/horizon/api-reference/resources/retrieve-an-account | Account Details} * @param id - For example: `GDGQVOKHW4VEJRU2TETD6DBRKEO5ERCNF353LW5WBFW3JJWQ2BRQ6KDD` * @returns a new CallBuilder instance for the /accounts/:id endpoint */ accountId(id: string): CallBuilder<ServerApi.AccountRecord>; /** * This endpoint filters accounts by signer account. * @see {@link https://developers.stellar.org/docs/data/horizon/api-reference/resources/list-all-accounts | Accounts} * @param id - For example: `GDGQVOKHW4VEJRU2TETD6DBRKEO5ERCNF353LW5WBFW3JJWQ2BRQ6KDD` * @returns current AccountCallBuilder instance */ forSigner(id: string): this; /** * This endpoint filters all accounts who are trustees to an asset. * @see {@link https://developers.stellar.org/docs/data/horizon/api-reference/resources/list-all-accounts | Accounts} * @see Asset * @param asset - For example: `new Asset('USD','GDGQVOKHW4VEJRU2TETD6DBRKEO5ERCNF353LW5WBFW3JJWQ2BRQ6KDD')` * @returns current AccountCallBuilder instance */ forAsset(asset: Asset): this; /** * This endpoint filters accounts where the given account is sponsoring the account or any of its sub-entries.. * @see {@link https://developers.stellar.org/docs/data/horizon/api-reference/resources/list-all-accounts | Accounts} * @param id - For example: `GDGQVOKHW4VEJRU2TETD6DBRKEO5ERCNF353LW5WBFW3JJWQ2BRQ6KDD` * @returns current AccountCallBuilder instance */ sponsor(id: string): this; /** * This endpoint filters accounts holding a trustline to the given liquidity pool. * * @param id - The ID of the liquidity pool. For example: `dd7b1ab831c273310ddbec6f97870aa83c2fbd78ce22aded37ecbf4f3380fac7`. * @returns current AccountCallBuilder instance */ forLiquidityPool(id: string): this; }