src/payment_call_builder.js

  1. import {CallBuilder} from "./call_builder";
  2. export class PaymentCallBuilder extends CallBuilder {
  3. /**
  4. * Creates a new {@link PaymentCallBuilder} pointed to server defined by serverUrl.
  5. *
  6. * Do not create this object directly, use {@link Server#payments}.
  7. * @see [All Payments](https://developer.digitalbits.io/frontier/reference/payments-all.html)
  8. * @constructor
  9. * @extends CallBuilder
  10. * @param {string} serverUrl Frontier server URL.
  11. */
  12. constructor(serverUrl) {
  13. super(serverUrl);
  14. this.url.segment('payments');
  15. }
  16. /**
  17. * This endpoint responds with a collection of Payment operations where the given account was either the sender or receiver.
  18. * @see [Payments for Account](https://developer.digitalbits.io/frontier/reference/payments-for-account.html)
  19. * @param {string} accountId For example: `GDGQVOKHW4VEJRU2TETD6DBRKEO5ERCNF353LW5WBFW3JJWQ2BRQ6KDD`
  20. * @returns {PaymentCallBuilder}
  21. */
  22. forAccount(accountId) {
  23. this.filter.push(['accounts', accountId, 'payments']);
  24. return this;
  25. }
  26. /**
  27. * This endpoint represents all payment operations that are part of a valid transactions in a given ledger.
  28. * @see [Payments for Ledger](https://developer.digitalbits.io/frontier/reference/payments-for-ledger.html)
  29. * @param {number|string} sequence Ledger sequence
  30. * @returns {PaymentCallBuilder}
  31. */
  32. forLedger(sequence) {
  33. if (typeof sequence == 'number') {
  34. sequence = sequence.toString();
  35. }
  36. this.filter.push(['ledgers', sequence, 'payments']);
  37. return this;
  38. }
  39. /**
  40. * This endpoint represents all payment operations that are part of a given transaction.
  41. * @see [Payments for Transaction](https://developer.digitalbits.io/frontier/reference/payments-for-transaction.html)
  42. * @param {string} transactionId Transaction ID
  43. * @returns {PaymentCallBuilder}
  44. */
  45. forTransaction(transactionId) {
  46. this.filter.push(['transactions', transactionId, 'payments']);
  47. return this;
  48. }
  49. }