diff options
author | Alex Browne <stephenalexbrowne@gmail.com> | 2018-09-27 07:42:48 +0800 |
---|---|---|
committer | Fred Carlsen <fred@sjelfull.no> | 2018-12-06 19:04:24 +0800 |
commit | ce7027d11f79299c237dd5baa14b835e1d57f036 (patch) | |
tree | 1c846f076e8ec8e6a808a89ef9269b99b9898546 /packages/pipeline/src/entities/SraOrder.ts | |
parent | 3ba98e219205752d1a2ccf3f8aee6ba38b2b0c01 (diff) | |
download | dexon-sol-tools-ce7027d11f79299c237dd5baa14b835e1d57f036.tar dexon-sol-tools-ce7027d11f79299c237dd5baa14b835e1d57f036.tar.gz dexon-sol-tools-ce7027d11f79299c237dd5baa14b835e1d57f036.tar.bz2 dexon-sol-tools-ce7027d11f79299c237dd5baa14b835e1d57f036.tar.lz dexon-sol-tools-ce7027d11f79299c237dd5baa14b835e1d57f036.tar.xz dexon-sol-tools-ce7027d11f79299c237dd5baa14b835e1d57f036.tar.zst dexon-sol-tools-ce7027d11f79299c237dd5baa14b835e1d57f036.zip |
Add preliminary support for scraping orders from SRA endpoints (no pagination, only RR support for now)
Diffstat (limited to 'packages/pipeline/src/entities/SraOrder.ts')
-rw-r--r-- | packages/pipeline/src/entities/SraOrder.ts | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/packages/pipeline/src/entities/SraOrder.ts b/packages/pipeline/src/entities/SraOrder.ts new file mode 100644 index 000000000..c9a1f926d --- /dev/null +++ b/packages/pipeline/src/entities/SraOrder.ts @@ -0,0 +1,40 @@ +import { BaseEntity, Column, Entity, PrimaryColumn } from 'typeorm'; + +import { AssetType } from '../types'; + +@Entity() +export class SraOrder extends BaseEntity { + @PrimaryColumn() public exchangeAddress!: string; + @PrimaryColumn() public orderHashHex!: string; + + @Column() public lastUpdatedTimestamp!: number; + @Column() public firstSeenTimestamp!: number; + + @Column() public makerAddress!: string; + @Column() public takerAddress!: string; + @Column() public feeRecipientAddress!: string; + @Column() public senderAddress!: string; + @Column() public makerAssetAmount!: string; + @Column() public takerAssetAmount!: string; + @Column() public makerFee!: string; + @Column() public takerFee!: string; + @Column() public expirationTimeSeconds!: string; + @Column() public salt!: string; + @Column() public signature!: string; + + @Column() public rawMakerAssetData!: string; + @Column() public makerAssetType!: AssetType; + @Column() public makerAssetProxyId!: string; + @Column() public makerTokenAddress!: string; + @Column({ nullable: true, type: String }) + public makerTokenId!: string | null; + @Column() public rawTakerAssetData!: string; + @Column() public takerAssetType!: AssetType; + @Column() public takerAssetProxyId!: string; + @Column() public takerTokenAddress!: string; + @Column({ nullable: true, type: String }) + public takerTokenId!: string | null; + + // TODO(albrow): Make this optional? + @Column() public metaDataJson!: string; +} |