Fix web3 imports

This commit is contained in:
Fabio Berger 2017-05-26 12:57:37 +02:00
parent ff403f3f8f
commit 8c61af28db
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
import * as BigNumber from 'bignumber.js';
import * as ethUtil from 'ethereumjs-util';
import Web3 from 'web3';
import Web3 = require('web3');
import {assert} from './utils/assert';
import {Web3Wrapper} from './web3_wrapper';
import {ExchangeWrapper} from './contract_wrappers/exchange_wrapper';

View File

@ -1,6 +1,6 @@
import * as _ from 'lodash';
import * as BigNumber from 'bignumber.js';
import Web3 from 'web3';
import Web3 = require('web3');
import {SchemaValidator} from './schema_validator';
const HEX_REGEX = /^0x[0-9A-F]*$/i;

View File

@ -1,5 +1,5 @@
import * as _ from 'lodash';
import Web3 from 'web3';
import Web3 = require('web3');
import * as BigNumber from 'bignumber.js';
import promisify = require('es6-promisify');