@fruitsjs/core
Version:
Principal package with functions and models for building Fruits Eco-Blockchain applications.
24 lines (22 loc) • 429 B
text/typescript
/**
* Trade
* @module core
*/
export interface Trade {
timestamp: string;
quantityQNT: string;
priceNQT: string;
asset: string;
askOrder: string;
bidOrder: string;
askOrderHeight: number;
seller: string;
sellerRS: string;
buyer: string;
buyerRS: string;
block: string;
height: number;
tradeType: string;
name: string;
decimals: number;
}