Corrections to parameters handling and sorting.

This commit is contained in:
softsimon
2020-09-12 01:26:51 +07:00
parent 88e5b03430
commit 98cc81c53d
3 changed files with 80 additions and 53 deletions

View File

@@ -89,6 +89,7 @@ export interface BisqTrade {
payment_method: string;
trade_id: string;
trade_date: number;
market?: string;
}
export interface Currencies { [txid: string]: Currency; }
@@ -97,7 +98,8 @@ export interface Currency {
code: string;
name: string;
precision: number;
type: string;
_type: string;
}
export interface Depth { [market: string]: Market; }