From 8c61af28db02129fb1d79930b32cea0ab8b55954 Mon Sep 17 00:00:00 2001 From: Fabio Berger Date: Fri, 26 May 2017 12:57:37 +0200 Subject: Fix web3 imports --- src/ts/0x.js.ts | 2 +- src/ts/utils/assert.ts | 2 +- src/ts/web3_wrapper.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/ts') diff --git a/src/ts/0x.js.ts b/src/ts/0x.js.ts index 7ea32b87a..78abff681 100644 --- a/src/ts/0x.js.ts +++ b/src/ts/0x.js.ts @@ -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'; diff --git a/src/ts/utils/assert.ts b/src/ts/utils/assert.ts index 15d3031ff..809acb875 100644 --- a/src/ts/utils/assert.ts +++ b/src/ts/utils/assert.ts @@ -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; diff --git a/src/ts/web3_wrapper.ts b/src/ts/web3_wrapper.ts index 92781687e..0c44ef514 100644 --- a/src/ts/web3_wrapper.ts +++ b/src/ts/web3_wrapper.ts @@ -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'); -- cgit v1.2.3