Stellar v0.3.0 Stellar.Payments View Source

Functions for interacting with Payments

Link to this section Summary

Functions

Returns all payments

Returns all payments for given account

Returns all payments for given ledger

Link to this section Functions

Returns all payments

optional params can take any of the following.:

  • cursor: A paging token, specifying where to start returning records from.

  • order: The order in which to return rows, “asc” or “desc”.

  • limit: Maximum number of records to return.

Link to this function all_for_account(accountId, params \\ []) View Source
all_for_account(binary(), Keyword.t()) :: {Stellar.status(), map()}

Returns all payments for given account

See all/1 for allowed optional params

Link to this function all_for_ledger(ledgerId, params \\ []) View Source
all_for_ledger(binary(), Keyword.t()) :: {Stellar.status(), map()}

Returns all payments for given ledger

See all/1 for allowed optional params