diff options
author | Alex Browne <stephenalexbrowne@gmail.com> | 2018-11-08 07:29:34 +0800 |
---|---|---|
committer | Fred Carlsen <fred@sjelfull.no> | 2018-12-06 19:04:24 +0800 |
commit | 62412b8551d1171844c9cdb30f2b2fe0ab2ba66b (patch) | |
tree | 41d3165343b75a802f3004fae1dcea081ac01a11 /packages/pipeline/src/index.ts | |
parent | 374d51309007ceef8112b5999195e20e49b26c5f (diff) | |
download | dexon-sol-tools-62412b8551d1171844c9cdb30f2b2fe0ab2ba66b.tar.gz dexon-sol-tools-62412b8551d1171844c9cdb30f2b2fe0ab2ba66b.tar.zst dexon-sol-tools-62412b8551d1171844c9cdb30f2b2fe0ab2ba66b.zip |
Update relayer code to use new relayer-registry format
Diffstat (limited to 'packages/pipeline/src/index.ts')
-rw-r--r-- | packages/pipeline/src/index.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/pipeline/src/index.ts b/packages/pipeline/src/index.ts index 9483eb257..b42256d87 100644 --- a/packages/pipeline/src/index.ts +++ b/packages/pipeline/src/index.ts @@ -16,7 +16,10 @@ import { parseRelayers } from './parsers/relayer_registry'; import { parseBlock, parseTransaction } from './parsers/web3'; const EXCHANGE_START_BLOCK = 6271590; // Block number when the Exchange contract was deployed to mainnet. -const RELAYER_REGISTRY_URL = 'https://raw.githubusercontent.com/0xProject/0x-relayer-registry/master/relayers.json'; +// NOTE(albrow): We need to manually update this URL for now. Fix this when we +// have the relayer-registry behind semantic versioning. +const RELAYER_REGISTRY_URL = + 'https://raw.githubusercontent.com/0xProject/0x-relayer-registry/4701c85677d161ea729a466aebbc1826c6aa2c0b/relayers.json'; let connection: Connection; |