aboutsummaryrefslogtreecommitdiffstats
path: root/packages/0x.js/src/order_watcher/event_watcher.ts
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2017-12-09 01:23:44 +0800
committerFabio Berger <me@fabioberger.com>2017-12-09 01:23:44 +0800
commitd5757499bc0f828fbf86ffea2da8ad3941f1c33e (patch)
tree6f429e6f2b3050de6dd7ce16e42c7f387bd5018a /packages/0x.js/src/order_watcher/event_watcher.ts
parent139c8c2e783ffbbf22473604419fe3e5b299be0e (diff)
parentaf8d24d0eb5af781f4731b5559979f2b02579785 (diff)
downloaddexon-sol-tools-d5757499bc0f828fbf86ffea2da8ad3941f1c33e.tar
dexon-sol-tools-d5757499bc0f828fbf86ffea2da8ad3941f1c33e.tar.gz
dexon-sol-tools-d5757499bc0f828fbf86ffea2da8ad3941f1c33e.tar.bz2
dexon-sol-tools-d5757499bc0f828fbf86ffea2da8ad3941f1c33e.tar.lz
dexon-sol-tools-d5757499bc0f828fbf86ffea2da8ad3941f1c33e.tar.xz
dexon-sol-tools-d5757499bc0f828fbf86ffea2da8ad3941f1c33e.tar.zst
dexon-sol-tools-d5757499bc0f828fbf86ffea2da8ad3941f1c33e.zip
Merge branch 'feature/addSubproviders' into feature/portal-ledger-support
* feature/addSubproviders: remove console.log Update README.md Fix unit test Add missing params Debug CircleCi failure Update yarn.lock Inline network module Add todo Stop supporting different file extensions in abi-gen Refactor networkId out of web3Wrapper Update connect types in preperation for publishing Add link to random id generator Remove `prebuild` command and add `test:circleci` Fix CI command Address feedback Refactor web3Wrapper to a separate package
Diffstat (limited to 'packages/0x.js/src/order_watcher/event_watcher.ts')
-rw-r--r--packages/0x.js/src/order_watcher/event_watcher.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/0x.js/src/order_watcher/event_watcher.ts b/packages/0x.js/src/order_watcher/event_watcher.ts
index 831f19da5..d5b30d567 100644
--- a/packages/0x.js/src/order_watcher/event_watcher.ts
+++ b/packages/0x.js/src/order_watcher/event_watcher.ts
@@ -1,3 +1,4 @@
+import {Web3Wrapper} from '@0xproject/web3-wrapper';
import * as _ from 'lodash';
import * as Web3 from 'web3';
@@ -11,7 +12,6 @@ import {AbiDecoder} from '../utils/abi_decoder';
import {assert} from '../utils/assert';
import {intervalUtils} from '../utils/interval_utils';
import {utils} from '../utils/utils';
-import {Web3Wrapper} from '../web3_wrapper';
const DEFAULT_EVENT_POLLING_INTERVAL_MS = 200;