aboutsummaryrefslogtreecommitdiffstats
path: root/packages/pipeline/src/index.ts
diff options
context:
space:
mode:
authorAlex Browne <stephenalexbrowne@gmail.com>2018-09-26 07:06:52 +0800
committerAlex Browne <stephenalexbrowne@gmail.com>2018-12-05 06:24:06 +0800
commit71a015f2aa32fedd3d3c5e9d5a3fa4eb272b2852 (patch)
treeef8933cdc94b71b78d7b535d6d49bb519e1bfd9d /packages/pipeline/src/index.ts
parentb0de2a388fc7079bc45c7886b002420783021416 (diff)
downloaddexon-sol-tools-71a015f2aa32fedd3d3c5e9d5a3fa4eb272b2852.tar
dexon-sol-tools-71a015f2aa32fedd3d3c5e9d5a3fa4eb272b2852.tar.gz
dexon-sol-tools-71a015f2aa32fedd3d3c5e9d5a3fa4eb272b2852.tar.bz2
dexon-sol-tools-71a015f2aa32fedd3d3c5e9d5a3fa4eb272b2852.tar.lz
dexon-sol-tools-71a015f2aa32fedd3d3c5e9d5a3fa4eb272b2852.tar.xz
dexon-sol-tools-71a015f2aa32fedd3d3c5e9d5a3fa4eb272b2852.tar.zst
dexon-sol-tools-71a015f2aa32fedd3d3c5e9d5a3fa4eb272b2852.zip
For event entities, rename address -> contractAddress and make it a primary key
Diffstat (limited to 'packages/pipeline/src/index.ts')
-rw-r--r--packages/pipeline/src/index.ts12
1 files changed, 10 insertions, 2 deletions
diff --git a/packages/pipeline/src/index.ts b/packages/pipeline/src/index.ts
index 1a010b6e5..07ab1d991 100644
--- a/packages/pipeline/src/index.ts
+++ b/packages/pipeline/src/index.ts
@@ -17,11 +17,19 @@ const EXCHANGE_ADDRESS = '0x4f833a24e1f95d70f028921e27040ca56e09ab0b';
const fillRepository = connection.getRepository(ExchangeFillEvent);
const cancelRepository = connection.getRepository(ExchangeCancelEvent);
const cancelUpToRepository = connection.getRepository(ExchangeCancelUpToEvent);
- console.log(`found ${(await fillRepository.count()) + (await cancelRepository.count())} existing events`);
+ console.log(
+ `found ${(await fillRepository.count()) +
+ (await cancelRepository.count()) +
+ (await cancelUpToRepository.count())} existing events`,
+ );
const rawEvents = await etherscan.getContractEventsAsync(EXCHANGE_ADDRESS);
const events = parseExchangeEvents(rawEvents);
for (const event of events) {
await event.save();
}
- console.log(`now there are ${(await fillRepository.count()) + (await cancelRepository.count())} total events`);
+ console.log(
+ `now there are ${(await fillRepository.count()) +
+ (await cancelRepository.count()) +
+ (await cancelUpToRepository.count())} total events`,
+ );
})();