aboutsummaryrefslogtreecommitdiffstats
path: root/packages/order-watcher/src/order_watcher
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-09-04 23:24:01 +0800
committerFabio Berger <me@fabioberger.com>2018-09-04 23:24:01 +0800
commit8d7f2a993a9ecb9f805135b56aee05f8e656e0a8 (patch)
tree79e9358d84bbbf5f6bc76414609b1b6d1174cadc /packages/order-watcher/src/order_watcher
parented786f3e8f970fac88cee68f399813f17160cdd7 (diff)
downloaddexon-0x-contracts-8d7f2a993a9ecb9f805135b56aee05f8e656e0a8.tar
dexon-0x-contracts-8d7f2a993a9ecb9f805135b56aee05f8e656e0a8.tar.gz
dexon-0x-contracts-8d7f2a993a9ecb9f805135b56aee05f8e656e0a8.tar.bz2
dexon-0x-contracts-8d7f2a993a9ecb9f805135b56aee05f8e656e0a8.tar.lz
dexon-0x-contracts-8d7f2a993a9ecb9f805135b56aee05f8e656e0a8.tar.xz
dexon-0x-contracts-8d7f2a993a9ecb9f805135b56aee05f8e656e0a8.tar.zst
dexon-0x-contracts-8d7f2a993a9ecb9f805135b56aee05f8e656e0a8.zip
Import fetchers from contract-wrappers
Diffstat (limited to 'packages/order-watcher/src/order_watcher')
-rw-r--r--packages/order-watcher/src/order_watcher/order_watcher.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/order-watcher/src/order_watcher/order_watcher.ts b/packages/order-watcher/src/order_watcher/order_watcher.ts
index d4c5cca4b..cab2efa4b 100644
--- a/packages/order-watcher/src/order_watcher/order_watcher.ts
+++ b/packages/order-watcher/src/order_watcher/order_watcher.ts
@@ -1,5 +1,6 @@
// tslint:disable:no-unnecessary-type-assertion
import {
+ AssetBalanceAndProxyAllowanceFetcher,
ContractWrappers,
ERC20TokenApprovalEventArgs,
ERC20TokenEventArgs,
@@ -15,6 +16,7 @@ import {
ExchangeEventArgs,
ExchangeEvents,
ExchangeFillEventArgs,
+ OrderFilledCancelledFetcher,
WETH9DepositEventArgs,
WETH9EventArgs,
WETH9Events,
@@ -34,8 +36,6 @@ import { BlockParamLiteral, LogEntryEvent, LogWithDecodedArgs, Provider } from '
import * as _ from 'lodash';
import { artifacts } from '../artifacts';
-import { AssetBalanceAndProxyAllowanceFetcher } from '../fetchers/asset_balance_and_proxy_allowance_fetcher';
-import { OrderFilledCancelledFetcher } from '../fetchers/order_filled_cancelled_fetcher';
import { orderWatcherPartialConfigSchema } from '../schemas/order_watcher_partial_config_schema';
import { OnOrderStateChangeCallback, OrderWatcherConfig, OrderWatcherError } from '../types';
import { assert } from '../utils/assert';