UNPKG

@stellar/stellar-sdk

Version:

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

50 lines (49 loc) 2.15 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 TradesCallBuilder} pointed to server defined by serverUrl. * * Do not create this object directly, use {@link Horizon.Server.trades}. * * @see {@link https://developers.stellar.org/docs/data/horizon/api-reference/resources/trades | Trades} * * @param serverUrl - serverUrl Horizon server URL. */ export declare class TradesCallBuilder extends CallBuilder<ServerApi.CollectionPage<ServerApi.TradeRecord>> { constructor(serverUrl: URL, httpClient: HttpClient); /** * Filter trades for a specific asset pair (orderbook) * @param base - asset * @param counter - asset * @returns current TradesCallBuilder instance */ forAssetPair(base: Asset, counter: Asset): this; /** * Filter trades for a specific offer * @param offerId - ID of the offer * @returns current TradesCallBuilder instance */ forOffer(offerId: string): this; /** * Filter trades by a specific type. * @param tradeType - the trade type to filter by. * @returns current TradesCallBuilder instance. */ forType(tradeType: ServerApi.TradeType): this; /** * Filter trades for a specific account * @see {@link https://developers.stellar.org/docs/data/horizon/api-reference/resources/get-trades-by-account-id | Trades for Account} * @param accountId - For example: `GBYTR4MC5JAX4ALGUBJD7EIKZVM7CUGWKXIUJMRSMK573XH2O7VAK3SR` * @returns current TradesCallBuilder instance */ forAccount(accountId: string): this; /** * Filter trades for a specific liquidity pool * @see {@link https://developers.stellar.org/docs/data/horizon/api-reference/resources/retrieve-related-trades | Trades for Liquidity Pool} * @param liquidityPoolId - For example: `3b476aff8a406a6ec3b61d5c038009cef85f2ddfaf616822dc4fec92845149b4` * @returns current TradesCallBuilder instance */ forLiquidityPool(liquidityPoolId: string): this; }