OBJECT
Trade
Represents single trade(fulfilled offer)
link GraphQL Schema definition
- type Trade {
- : String
- # When the ledger with this trade was closed
- : DateTime!
- # The sell offer
- : OfferID
- : Account
- # Amount of `assetSold` that was moved from `seller` to `buyer`
- : String!
- : Asset!
- # Counter party of this trade
- : Account
- # Amount of `assetBought` that was moved from `buyer` to `seller`
- : String!
- : Asset!
- # Original offer price
- : String
- }