UNPKG

stellar-sdk

Version:

A library for working with the Stellar network, including communication with the Horizon and Soroban RPC servers.

14 lines (13 loc) 385 B
import { BaseEffectRecord } from "./effects"; export interface Trade extends BaseEffectRecord { seller: string; offer_id: number | string; bought_amount: string; bought_asset_type: string; bought_asset_code: string; bought_asset_issuer: string; sold_amount: string; sold_asset_type: string; sold_asset_code: string; sold_asset_issuer: string; }