aboutsummaryrefslogtreecommitdiffstats
path: root/packages/pipeline/src/entities/ExchangeCancelEvent.ts
diff options
context:
space:
mode:
authorAlex Browne <stephenalexbrowne@gmail.com>2018-09-27 07:42:48 +0800
committerFred Carlsen <fred@sjelfull.no>2018-12-06 19:04:24 +0800
commitce7027d11f79299c237dd5baa14b835e1d57f036 (patch)
tree1c846f076e8ec8e6a808a89ef9269b99b9898546 /packages/pipeline/src/entities/ExchangeCancelEvent.ts
parent3ba98e219205752d1a2ccf3f8aee6ba38b2b0c01 (diff)
downloaddexon-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/ExchangeCancelEvent.ts')
-rw-r--r--packages/pipeline/src/entities/ExchangeCancelEvent.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/pipeline/src/entities/ExchangeCancelEvent.ts b/packages/pipeline/src/entities/ExchangeCancelEvent.ts
index d0188c2f5..7010ab9f2 100644
--- a/packages/pipeline/src/entities/ExchangeCancelEvent.ts
+++ b/packages/pipeline/src/entities/ExchangeCancelEvent.ts
@@ -16,6 +16,7 @@ export class ExchangeCancelEvent extends BaseEntity {
@Column() public feeRecepientAddress!: string;
@Column() public senderAddress!: string;
@Column() public orderHash!: string;
+
@Column() public rawMakerAssetData!: string;
@Column() public makerAssetType!: AssetType;
@Column() public makerAssetProxyId!: string;
@@ -28,5 +29,6 @@ export class ExchangeCancelEvent extends BaseEntity {
@Column() public takerTokenAddress!: string;
@Column({ nullable: true, type: String })
public takerTokenId!: string | null;
+
// TODO(albrow): Include topics?
}