diff options
Diffstat (limited to 'src/ts')
-rw-r--r-- | src/ts/0x.js.ts | 2 | ||||
-rw-r--r-- | src/ts/utils/assert.ts | 2 | ||||
-rw-r--r-- | src/ts/web3_wrapper.ts | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/ts/0x.js.ts b/src/ts/0x.js.ts index 78abff681..cc3c43e79 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 = require('web3'); +import * as Web3 from '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 809acb875..1baf572d1 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 = require('web3'); +import * as Web3 from '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 0c44ef514..ec3be994f 100644 --- a/src/ts/web3_wrapper.ts +++ b/src/ts/web3_wrapper.ts @@ -1,5 +1,5 @@ import * as _ from 'lodash'; -import Web3 = require('web3'); +import * as Web3 from 'web3'; import * as BigNumber from 'bignumber.js'; import promisify = require('es6-promisify'); |