UNPKG

triam-sdk-contract

Version:

triam-sdk is a library for working with the Triam Horizon server.

55 lines (50 loc) 2.13 kB
import {CallBuilder} from "./call_builder"; /** * Creates a new {@link TransactionCallBuilder} pointed to server defined by serverUrl. * Do not create this object directly, use {@link Server#transactions}. * * @class TransactionCallBuilder * @extends CallBuilder * @see [All Transactions](https://www.stellar.org/developers/horizon/reference/transactions-all.html) * @constructor * @param {string} serverUrl Horizon server URL. */ export class TransactionCallBuilder extends CallBuilder { constructor(serverUrl) { super(serverUrl); this.url.segment('transactions'); } /** * The transaction details endpoint provides information on a single transaction. The transaction hash provided in the hash argument specifies which transaction to load. * @see [Transaction Details](https://www.stellar.org/developers/horizon/reference/transactions-single.html) * @param {string} transactionId Transaction ID * @returns {TransactionCallBuilder} */ transaction(transactionId) { this.filter.push(['transactions', transactionId]); return this; } /** * This endpoint represents all transactions that affected a given account. * @see [Transactions for Account](https://www.stellar.org/developers/horizon/reference/transactions-for-account.html) * @param {string} accountId For example: `GDGQVOKHW4VEJRU2TETD6DBRKEO5ERCNF353LW5WBFW3JJWQ2BRQ6KDD` * @returns {TransactionCallBuilder} */ forAccount(accountId) { this.filter.push(['accounts', accountId, 'transactions']); return this; } /** * This endpoint represents all transactions in a given ledger. * @see [Transactions for Ledger](https://www.stellar.org/developers/horizon/reference/transactions-for-ledger.html) * @param {number|string} sequence Ledger sequence * @returns {TransactionCallBuilder} */ forLedger(sequence) { if (typeof sequence == 'number') { sequence = sequence.toString(); } this.filter.push(['ledgers', sequence, 'transactions']); return this; } }