diff options
author | zkao <zichongkao@gmail.com> | 2018-12-12 07:48:54 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-12 07:48:54 +0800 |
commit | 42be1a429fd9286a72e19b782c9b906cb3c0f8ad (patch) | |
tree | 123cee2e74c858b7ad7c12dc8f8a6e7ced233f5f /packages/pipeline/src/entities | |
parent | 96b8100a787d00142dcf875d940c9125571cbde6 (diff) | |
download | dexon-sol-tools-42be1a429fd9286a72e19b782c9b906cb3c0f8ad.tar.gz dexon-sol-tools-42be1a429fd9286a72e19b782c9b906cb3c0f8ad.tar.zst dexon-sol-tools-42be1a429fd9286a72e19b782c9b906cb3c0f8ad.zip |
track idex orderbook snapshots (#1397)
* Track Idex and Oasis Orderbook Snapshots
Diffstat (limited to 'packages/pipeline/src/entities')
-rw-r--r-- | packages/pipeline/src/entities/token_order.ts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/pipeline/src/entities/token_order.ts b/packages/pipeline/src/entities/token_order.ts index 557705767..4b8f0abc3 100644 --- a/packages/pipeline/src/entities/token_order.ts +++ b/packages/pipeline/src/entities/token_order.ts @@ -10,20 +10,20 @@ export class TokenOrderbookSnapshot { public observedTimestamp!: number; @PrimaryColumn({ name: 'source' }) public source!: string; - @Column({ name: 'order_type' }) + @PrimaryColumn({ name: 'order_type' }) public orderType!: OrderType; @PrimaryColumn({ name: 'price', type: 'numeric', transformer: bigNumberTransformer }) public price!: BigNumber; @PrimaryColumn({ name: 'base_asset_symbol' }) public baseAssetSymbol!: string; - @Column({ name: 'base_asset_address' }) - public baseAssetAddress!: string; + @Column({ nullable: true, type: String, name: 'base_asset_address' }) + public baseAssetAddress!: string | null; @Column({ name: 'base_volume', type: 'numeric', transformer: bigNumberTransformer }) public baseVolume!: BigNumber; @PrimaryColumn({ name: 'quote_asset_symbol' }) public quoteAssetSymbol!: string; - @Column({ name: 'quote_asset_address' }) - public quoteAssetAddress!: string; + @Column({ nullable: true, type: String, name: 'quote_asset_address' }) + public quoteAssetAddress!: string | null; @Column({ name: 'quote_volume', type: 'numeric', transformer: bigNumberTransformer }) public quoteVolume!: BigNumber; } |