UNPKG

@stellar/stellar-sdk

Version:

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

52 lines (48 loc) 2.14 kB
'use strict'; var call_builder = require('./call_builder.js'); class PaymentCallBuilder extends call_builder.CallBuilder { constructor(serverUrl, httpClient) { super(serverUrl, httpClient, "payments"); this.setPath("payments"); } /** * This endpoint responds with a collection of Payment operations where the given account was either the sender or receiver. * @see {@link https://developers.stellar.org/docs/data/horizon/api-reference/horizon/resources/get-payments-by-account-id | Payments for Account} * @param accountId - For example: `GDGQVOKHW4VEJRU2TETD6DBRKEO5ERCNF353LW5WBFW3JJWQ2BRQ6KDD` * @returns this PaymentCallBuilder instance */ forAccount(accountId) { return this.forEndpoint("accounts", accountId); } /** * This endpoint represents all payment operations that are part of a valid transactions in a given ledger. * @see {@link https://developers.stellar.org/docs/data/horizon/api-reference/horizon/resources/retrieve-a-ledgers-payments | Payments for Ledger} * @param sequence - Ledger sequence * @returns this PaymentCallBuilder instance */ forLedger(sequence) { return this.forEndpoint("ledgers", sequence.toString()); } /** * This endpoint represents all payment operations that are part of a given transaction. * @see {@link https://developers.stellar.org/docs/data/horizon/api-reference/resources/transactions/payments/ | Payments for Transaction} * @param transactionId - Transaction ID * @returns this PaymentCallBuilder instance */ forTransaction(transactionId) { return this.forEndpoint("transactions", transactionId); } /** * Adds a parameter defining whether to include failed transactions. * By default, only operations of successful transactions are returned. * * @param value - Set to `true` to include operations of failed transactions. * @returns this PaymentCallBuilder instance */ includeFailed(value) { this.url.searchParams.set("include_failed", value.toString()); return this; } } exports.PaymentCallBuilder = PaymentCallBuilder; //# sourceMappingURL=payment_call_builder.js.map