diff options
Diffstat (limited to 'packages/pipeline/src/zrx.ts')
-rw-r--r-- | packages/pipeline/src/zrx.ts | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/packages/pipeline/src/zrx.ts b/packages/pipeline/src/zrx.ts deleted file mode 100644 index cbe10a55a..000000000 --- a/packages/pipeline/src/zrx.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { ExchangeEvents, ZeroEx } from '0x.js'; -import * as dotenv from 'dotenv'; -import * as Web3 from 'web3'; -dotenv.config(); -const provider = new Web3.providers.HttpProvider(process.env.WEB3_PROVIDER_URL); -const web3 = new Web3(provider); -const MAINNET = 1; -const zrx = new ZeroEx(provider, { - networkId: MAINNET, -}); -export { web3, zrx }; |