diff options
author | Alex Browne <stephenalexbrowne@gmail.com> | 2018-09-28 04:53:37 +0800 |
---|---|---|
committer | Fred Carlsen <fred@sjelfull.no> | 2018-12-06 19:04:24 +0800 |
commit | 5719eb28f758134afdaed1001c0757204591331d (patch) | |
tree | cfae728cf53ae5100e489d453f0006ca8ece312a | |
parent | ce7027d11f79299c237dd5baa14b835e1d57f036 (diff) | |
download | dexon-sol-tools-5719eb28f758134afdaed1001c0757204591331d.tar dexon-sol-tools-5719eb28f758134afdaed1001c0757204591331d.tar.gz dexon-sol-tools-5719eb28f758134afdaed1001c0757204591331d.tar.bz2 dexon-sol-tools-5719eb28f758134afdaed1001c0757204591331d.tar.lz dexon-sol-tools-5719eb28f758134afdaed1001c0757204591331d.tar.xz dexon-sol-tools-5719eb28f758134afdaed1001c0757204591331d.tar.zst dexon-sol-tools-5719eb28f758134afdaed1001c0757204591331d.zip |
Add soruceUrl to SraOrder entity
-rw-r--r-- | packages/pipeline/src/entities/SraOrder.ts | 1 | ||||
-rw-r--r-- | packages/pipeline/src/index.ts | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/packages/pipeline/src/entities/SraOrder.ts b/packages/pipeline/src/entities/SraOrder.ts index c9a1f926d..e4987df57 100644 --- a/packages/pipeline/src/entities/SraOrder.ts +++ b/packages/pipeline/src/entities/SraOrder.ts @@ -7,6 +7,7 @@ export class SraOrder extends BaseEntity { @PrimaryColumn() public exchangeAddress!: string; @PrimaryColumn() public orderHashHex!: string; + @Column() public sourceUrl!: string; @Column() public lastUpdatedTimestamp!: number; @Column() public firstSeenTimestamp!: number; diff --git a/packages/pipeline/src/index.ts b/packages/pipeline/src/index.ts index 3e8434e3d..c442c7970 100644 --- a/packages/pipeline/src/index.ts +++ b/packages/pipeline/src/index.ts @@ -47,10 +47,12 @@ async function getSraOrdersAsync(): Promise<void> { const orderRepository = connection.getRepository(SraOrder); console.log(`found ${await orderRepository.count()} existing orders`); - const connect = new HttpClient('https://api.radarrelay.com/0x/v2'); + const sraUrl = 'https://api.radarrelay.com/0x/v2'; + const connect = new HttpClient(sraUrl); const rawOrders = await connect.getOrdersAsync(); const orders = parseSraOrders(rawOrders); for (const order of orders) { + order.sourceUrl = sraUrl; order.save(); } console.log(`now there are ${await orderRepository.count()} total orders`); |