aboutsummaryrefslogtreecommitdiffstats
path: root/packages/pipeline/src/models/historical_prices.ts
diff options
context:
space:
mode:
authorAlex Browne <stephenalexbrowne@gmail.com>2018-09-18 02:27:38 +0800
committerFred Carlsen <fred@sjelfull.no>2018-12-13 01:11:46 +0800
commiteb1317a59abec368f3855eb3690e40d8db2a8984 (patch)
treec612db4cc6287a8b1f95d3cd458f332d68853adf /packages/pipeline/src/models/historical_prices.ts
parent98325e1cfb4f6c732728fe2943895fad2cb03be5 (diff)
downloaddexon-0x-contracts-eb1317a59abec368f3855eb3690e40d8db2a8984.tar.gz
dexon-0x-contracts-eb1317a59abec368f3855eb3690e40d8db2a8984.tar.zst
dexon-0x-contracts-eb1317a59abec368f3855eb3690e40d8db2a8984.zip
Rebase pipeline branch off development
Diffstat (limited to 'packages/pipeline/src/models/historical_prices.ts')
-rw-r--r--packages/pipeline/src/models/historical_prices.ts43
1 files changed, 43 insertions, 0 deletions
diff --git a/packages/pipeline/src/models/historical_prices.ts b/packages/pipeline/src/models/historical_prices.ts
new file mode 100644
index 000000000..cf49b579e
--- /dev/null
+++ b/packages/pipeline/src/models/historical_prices.ts
@@ -0,0 +1,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 };