aboutsummaryrefslogtreecommitdiffstats
path: root/packages/pipeline/src/entities/exchange_cancel_up_to_event.ts
diff options
context:
space:
mode:
authorAlex Browne <stephenalexbrowne@gmail.com>2018-11-09 02:15:09 +0800
committerAlex Browne <stephenalexbrowne@gmail.com>2018-12-05 06:24:48 +0800
commitccad046eb649a60fdf7319a075fa41490d593ae8 (patch)
tree3c356e71868c7dcc770791dc70e90ae7abc16a30 /packages/pipeline/src/entities/exchange_cancel_up_to_event.ts
parent954c3b9272556723c10fd02ad6b753ac98ca47fa (diff)
downloaddexon-0x-contracts-ccad046eb649a60fdf7319a075fa41490d593ae8.tar
dexon-0x-contracts-ccad046eb649a60fdf7319a075fa41490d593ae8.tar.gz
dexon-0x-contracts-ccad046eb649a60fdf7319a075fa41490d593ae8.tar.bz2
dexon-0x-contracts-ccad046eb649a60fdf7319a075fa41490d593ae8.tar.lz
dexon-0x-contracts-ccad046eb649a60fdf7319a075fa41490d593ae8.tar.xz
dexon-0x-contracts-ccad046eb649a60fdf7319a075fa41490d593ae8.tar.zst
dexon-0x-contracts-ccad046eb649a60fdf7319a075fa41490d593ae8.zip
Reorganize entities. Make scripts work from any directory.
Diffstat (limited to 'packages/pipeline/src/entities/exchange_cancel_up_to_event.ts')
-rw-r--r--packages/pipeline/src/entities/exchange_cancel_up_to_event.ts16
1 files changed, 16 insertions, 0 deletions
diff --git a/packages/pipeline/src/entities/exchange_cancel_up_to_event.ts b/packages/pipeline/src/entities/exchange_cancel_up_to_event.ts
new file mode 100644
index 000000000..3ca75ccf7
--- /dev/null
+++ b/packages/pipeline/src/entities/exchange_cancel_up_to_event.ts
@@ -0,0 +1,16 @@
+import { Column, Entity, PrimaryColumn } from 'typeorm';
+
+@Entity()
+export class ExchangeCancelUpToEvent {
+ @PrimaryColumn() public contractAddress!: string;
+ @PrimaryColumn() public logIndex!: number;
+ @PrimaryColumn() public blockNumber!: number;
+
+ // TODO(albrow): Include transaction hash
+ @Column() public rawData!: string;
+
+ @Column() public makerAddress!: string;
+ @Column() public senderAddress!: string;
+ @Column() public orderEpoch!: string;
+ // TODO(albrow): Include topics?
+}