diff options
author | Alex Browne <stephenalexbrowne@gmail.com> | 2018-10-19 08:44:48 +0800 |
---|---|---|
committer | Fred Carlsen <fred@sjelfull.no> | 2018-12-06 19:04:24 +0800 |
commit | 9c35d5369491ae5b62101b680b947e4f6fe64821 (patch) | |
tree | 8cfe1819f05d728f840cd32176ef007b39753860 /packages/pipeline/src/entities/ExchangeFillEvent.ts | |
parent | 8701f9a7b0bdf25e8075db52061df449a0b1a93b (diff) | |
download | dexon-0x-contracts-9c35d5369491ae5b62101b680b947e4f6fe64821.tar.gz dexon-0x-contracts-9c35d5369491ae5b62101b680b947e4f6fe64821.tar.zst dexon-0x-contracts-9c35d5369491ae5b62101b680b947e4f6fe64821.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; |