protocol/packages/0x.js/test/utils/web3_wrapper.ts
2018-03-13 14:41:46 +01:00

7 lines
246 B
TypeScript

import { web3Factory } from '@0xproject/dev-utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper';
import * as Web3 from 'web3';
export const web3 = web3Factory.create();
export const web3Wrapper = new Web3Wrapper(web3.currentProvider);