@stellar/stellar-sdk
Version:
A library for working with the Stellar network, including communication with the Horizon and Soroban RPC servers.
61 lines (60 loc) • 3.16 kB
TypeScript
import { CallBuilder } from "./call_builder";
import { ServerApi } from "./server_api";
/**
* Creates a new {@link TransactionCallBuilder} pointed to server defined by serverUrl.
*
* Do not create this object directly, use {@link Horizon.Server#transactions}.
*
* @see {@link https://developers.stellar.org/docs/data/horizon/api-reference/resources/list-all-transactions|All Transactions}
*
* @augments CallBuilder
* @private
* @class
*
* @param {string} serverUrl Horizon server URL.
*/
export declare class TransactionCallBuilder extends CallBuilder<ServerApi.CollectionPage<ServerApi.TransactionRecord>> {
constructor(serverUrl: URI);
/**
* The transaction details endpoint provides information on a single transaction. The transaction hash provided in the hash argument specifies which transaction to load.
* @see {@link https://developers.stellar.org/docs/data/horizon/api-reference/resources/retrieve-a-transaction|Transaction Details}
* @param {string} transactionId Transaction ID
* @returns {CallBuilder} a CallBuilder instance
*/
transaction(transactionId: string): CallBuilder<ServerApi.TransactionRecord>;
/**
* This endpoint represents all transactions that affected a given account.
* @see {@link https://developers.stellar.org/docs/data/horizon/api-reference/resources/get-transactions-by-account-id|Transactions for Account}
* @param {string} accountId For example: `GDGQVOKHW4VEJRU2TETD6DBRKEO5ERCNF353LW5WBFW3JJWQ2BRQ6KDD`
* @returns {TransactionCallBuilder} current TransactionCallBuilder instance
*/
forAccount(accountId: string): this;
/**
* This endpoint represents all transactions that reference a given claimable_balance.
* @see {@link https://developers.stellar.org/docs/data/horizon/api-reference/resources/cb-retrieve-related-transactions|Transactions for Claimable Balance}
* @param {string} claimableBalanceId Claimable Balance ID
* @returns {TransactionCallBuilder} this TransactionCallBuilder instance
*/
forClaimableBalance(claimableBalanceId: string): this;
/**
* This endpoint represents all transactions in a given ledger.
* @see {@link https://developers.stellar.org/docs/data/horizon/api-reference/resources/retrieve-a-ledgers-transactions|Transactions for Ledger}
* @param {number|string} sequence Ledger sequence
* @returns {TransactionCallBuilder} current TransactionCallBuilder instance
*/
forLedger(sequence: number | string): this;
/**
* This endpoint represents all transactions involving a particular liquidity pool.
*
* @param {string} poolId liquidity pool ID
* @returns {TransactionCallBuilder} this TransactionCallBuilder instance
*/
forLiquidityPool(poolId: string): this;
/**
* Adds a parameter defining whether to include failed transactions. By default only successful transactions are
* returned.
* @param {boolean} value Set to `true` to include failed transactions.
* @returns {TransactionCallBuilder} current TransactionCallBuilder instance
*/
includeFailed(value: boolean): this;
}