1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 | export interface VAccount {
|
12 | id: number;
|
13 | nonce: number;
|
14 | address: [string, string];
|
15 | balance: {
|
16 | quantity: string;
|
17 | contract: string;
|
18 | };
|
19 | }
|
20 | export interface efxTicker {
|
21 | btc: number;
|
22 | eth: number;
|
23 | usd: number;
|
24 | }
|
25 | export interface DefiBoxPair {
|
26 | id: number;
|
27 | token0: {
|
28 | contract: string;
|
29 | symbol: string;
|
30 | };
|
31 | token1: {
|
32 | contract: string;
|
33 | symbol: string;
|
34 | };
|
35 | reserve0: string;
|
36 | reserve1: string;
|
37 | liquidity_token: number;
|
38 | price0_last: string;
|
39 | price1_last: string;
|
40 | price0_cumulative_last: string;
|
41 | price1_cumulative_last: number;
|
42 | block_time_last: string;
|
43 | }
|