Stellar v0.3.0 Stellar.Transactions View Source

Functions for interacting with Transactions

Link to this section Summary

Functions

Returns all transactions

Returns all transactions for given account

Returns all transactions for given ledger

Gets transaction details

Posts the given Base64 representation of a transaction envelope

Link to this section Functions

Returns all transactions

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 transactions 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 transactions for given ledger

See all/1 for allowed optional params

Gets transaction details

Posts the given Base64 representation of a transaction envelope