Object
import { ExampleResponse } from "components/ExampleResponse"; import { AttributeTable } from "components/AttributeTable";
When Horizon returns information about a trade, it uses the following format:
- ATTRIBUTE -
id
stringA unique identifier for this trade.
paging_token
numberA cursor value for use in pagination.
ledger_close_time
stringAn ISO 8601 formatted string of when the ledger with this trade was closed.
offer_id
stringThe sell offer ID. DECPRECATED
base_account
stringThe account ID of the base party for this trade.
base_offer_id
stringThe base offer ID. If this offer was immediately and fully consumed, this will be a synethic ID.
base_amount
stringThe amount of the base asset that was moved from
base_accounttocounter_account.base_asset_type
stringThe type for the base asset. Either
native,credit_alphanum4, orcredit_alphanum12.base_asset_code
stringThe code for the base asset.
base_asset_issuer
stringThe Stellar address of the base asset’s issuer.
counter_offer_id
stringThe counter offer ID. If this offer was immediately and fully consumed, this will be a synethic ID.
counter_amount
stringThe amount of the counter asset that was moved from
counter_accounttobase_account.counter_asset_type
stringThe type for the counter asset. Either
native,credit_alphanum4, orcredit_alphanum12.counter_asset_code
stringThe code for the counter asset.
counter_asset_issuer
stringThe Stellar address of the counter asset’s issuer.
price
objectAn object of a number numerator and number denominator that represents the original offer price. To derive the price, divide
nbyd.Hide child attributesnnumber
The numerator.
dnumber
The denominator.
base_is_seller
booleanIndicates with party is the seller.
Last updated
Was this helpful?