View Source Stellar.Horizon.Trades (Elixir Stellar SDK v0.21.0)

Exposes functions to interact with Trades in Horizon.

You can:

  • List all trades.

Horizon API reference: https://developers.stellar.org/api/resources/trades/

Summary

Types

Functions

Link to this function

all(server, options \\ [])

View Source
@spec all(server :: server(), options :: options()) :: response()

Lists all trades.

Options

  • offer_id: The offer ID. Used to filter for trades originating from a specific offer.
  • base_asset: :native or [code: "base_asset_code", issuer: "base_asset_issuer"].
  • counter_asset: :native or [code: "counter_asset_code", issuer: "counter_asset_issuer"].
  • trade_type: Can be set to all, orderbook, or liquidity_pools to filter only trades executed across a given mechanism.
  • cursor: A number that points to a specific location in a collection of responses and is pulled from the paging_token value of a record.
  • order: A designation of the order in which records should appear. Options include asc (ascending) or desc (descending).
  • limit: The maximum number of records returned. The limit can range from 1 to 200. Defaults to 10.

Examples

iex> Trades.all(Stellar.Horizon.Server.testnet(), limit: 20, order: :asc)
{:ok, %Collection{records: [%Trade{}, ...]}}

# list by offer_id
iex> Trades.all(Stellar.Horizon.Server.testnet(), offer_id: 165563085)
{:ok, %Collection{records: [%Trade{}, ...]}}

# list by specific orderbook
iex> Trades.all(
  Stellar.Horizon.Server.testnet(),
  base_asset: [
    code: "TEST",
    issuer: "GCXMWUAUF37IWOOV2FRDKWEX3O2IHLM2FYH4WPI4PYUKAIFQEUU5X3TD"
  ],
  counter_asset: :native,
  limit: 20
)
{:ok, %Collection{records: [%Trade{}, ...]}}

# list by trade_type
iex> Trades.all(Stellar.Horizon.Server.testnet(), trade_type: "liquidity_pools", limit: 20)
{:ok, %Collection{records: [%Trade{}, ...]}}