aboutsummaryrefslogtreecommitdiffstats
path: root/packages/0x.js/src/contract_wrappers/exchange_wrapper.ts
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-03-18 21:01:18 +0800
committerFabio Berger <me@fabioberger.com>2018-03-18 21:01:18 +0800
commit4948551703fb3cb9f8470d9f4a61a9a5473e5afa (patch)
tree2e7d4d2e9c98cb6bebf7bdd17444d4b351220018 /packages/0x.js/src/contract_wrappers/exchange_wrapper.ts
parentd7bf003d511321ec6cb8814cb1549c46b4efba86 (diff)
parentd4c1b3b0bd26e730ce6687469cdf7283877543e1 (diff)
downloaddexon-0x-contracts-4948551703fb3cb9f8470d9f4a61a9a5473e5afa.tar
dexon-0x-contracts-4948551703fb3cb9f8470d9f4a61a9a5473e5afa.tar.gz
dexon-0x-contracts-4948551703fb3cb9f8470d9f4a61a9a5473e5afa.tar.bz2
dexon-0x-contracts-4948551703fb3cb9f8470d9f4a61a9a5473e5afa.tar.lz
dexon-0x-contracts-4948551703fb3cb9f8470d9f4a61a9a5473e5afa.tar.xz
dexon-0x-contracts-4948551703fb3cb9f8470d9f4a61a9a5473e5afa.tar.zst
dexon-0x-contracts-4948551703fb3cb9f8470d9f4a61a9a5473e5afa.zip
merge development
Diffstat (limited to 'packages/0x.js/src/contract_wrappers/exchange_wrapper.ts')
-rw-r--r--packages/0x.js/src/contract_wrappers/exchange_wrapper.ts12
1 files changed, 8 insertions, 4 deletions
diff --git a/packages/0x.js/src/contract_wrappers/exchange_wrapper.ts b/packages/0x.js/src/contract_wrappers/exchange_wrapper.ts
index 20b46c6bc..6414985e6 100644
--- a/packages/0x.js/src/contract_wrappers/exchange_wrapper.ts
+++ b/packages/0x.js/src/contract_wrappers/exchange_wrapper.ts
@@ -1,5 +1,12 @@
import { schemas } from '@0xproject/json-schemas';
-import { BlockParamLiteral, DecodedLogArgs, LogWithDecodedArgs } from '@0xproject/types';
+import {
+ BlockParamLiteral,
+ DecodedLogArgs,
+ ECSignature,
+ LogWithDecodedArgs,
+ Order,
+ SignedOrder,
+} from '@0xproject/types';
import { AbiDecoder, BigNumber } from '@0xproject/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper';
import * as _ from 'lodash';
@@ -8,19 +15,16 @@ import * as Web3 from 'web3';
import { artifacts } from '../artifacts';
import {
BlockRange,
- ECSignature,
EventCallback,
ExchangeContractErrCodes,
ExchangeContractErrs,
IndexedFilterValues,
MethodOpts,
- Order,
OrderAddresses,
OrderCancellationRequest,
OrderFillRequest,
OrderTransactionOpts,
OrderValues,
- SignedOrder,
ValidateOrderFillableOpts,
} from '../types';
import { assert } from '../utils/assert';