diff options
author | Alex Browne <stephenalexbrowne@gmail.com> | 2018-10-19 08:44:48 +0800 |
---|---|---|
committer | Alex Browne <stephenalexbrowne@gmail.com> | 2018-12-05 06:24:48 +0800 |
commit | 3a19faa5ff8a66395c5eb8d1400338cefaa21187 (patch) | |
tree | f35c9bbef19ebcef15e92f5f306040727d3b91a4 /packages/pipeline/src/entities/ExchangeFillEvent.ts | |
parent | bbe1a843ef44e518fc957ea36325d5a730502de5 (diff) | |
download | dexon-sol-tools-3a19faa5ff8a66395c5eb8d1400338cefaa21187.tar.gz dexon-sol-tools-3a19faa5ff8a66395c5eb8d1400338cefaa21187.tar.zst dexon-sol-tools-3a19faa5ff8a66395c5eb8d1400338cefaa21187.zip |
Update script to work with existing v1 pipeline data
Diffstat (limited to 'packages/pipeline/src/entities/ExchangeFillEvent.ts')
-rw-r--r-- | packages/pipeline/src/entities/ExchangeFillEvent.ts | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/packages/pipeline/src/entities/ExchangeFillEvent.ts b/packages/pipeline/src/entities/ExchangeFillEvent.ts index 5eafa7449..6e549af93 100644 --- a/packages/pipeline/src/entities/ExchangeFillEvent.ts +++ b/packages/pipeline/src/entities/ExchangeFillEvent.ts @@ -1,18 +1,19 @@ -import { BaseEntity, Column, Entity, PrimaryColumn } from 'typeorm'; +import { Column, Entity, PrimaryColumn } from 'typeorm'; import { AssetType } from '../types'; @Entity() -export class ExchangeFillEvent extends BaseEntity { +export class ExchangeFillEvent { @PrimaryColumn() public contractAddress!: string; @PrimaryColumn() public logIndex!: number; @PrimaryColumn() public blockNumber!: number; @Column() public rawData!: string; + @Column() public transactionHash!: string; @Column() public makerAddress!: string; @Column() public takerAddress!: string; - @Column() public feeRecepientAddress!: string; + @Column() public feeRecipientAddress!: string; @Column() public senderAddress!: string; @Column() public makerAssetFilledAmount!: string; @Column() public takerAssetFilledAmount!: string; |