1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
const historicalPrices = {
tableName: 'historical_prices',
tableProperties: {
token: {
type: 'varchar',
},
base: {
type: 'varchar',
},
timestamp: {
type: 'timestamp',
},
close: {
type: 'numeric(50)',
},
high: {
type: 'numeric(50)',
},
low: {
type: 'numeric(50)',
},
open: {
type: 'numeric(50)',
},
volume_from: {
type: 'numeric(50)',
},
volume_to: {
type: 'numeric(50)',
},
},
};
const logToHistoricalPricesSchema: { [log: string]: string } = {
token: 'token',
time: 'timestamp',
close: 'close',
high: 'high',
low: 'low',
open: 'open',
volumefrom: 'volume_from',
volumeto: 'volume_to',
};
export { historicalPrices, logToHistoricalPricesSchema };
|