diff options
author | Jacob Evans <jacob@dekz.net> | 2018-02-07 03:59:47 +0800 |
---|---|---|
committer | Jacob Evans <jacob@dekz.net> | 2018-02-07 05:17:14 +0800 |
commit | e17ace397cd5d0f4b24d3af868eef8ae55889456 (patch) | |
tree | 19293a228c6efbd34e8e4e56e85b3a48683d921c /packages/0x.js/src/utils | |
parent | df8de7ff517ba1386671c658d402fa7436ff4f74 (diff) | |
download | dexon-0x-contracts-e17ace397cd5d0f4b24d3af868eef8ae55889456.tar.gz dexon-0x-contracts-e17ace397cd5d0f4b24d3af868eef8ae55889456.tar.zst dexon-0x-contracts-e17ace397cd5d0f4b24d3af868eef8ae55889456.zip |
Move BlockParamLiteral to shared types package
Also BlockParam
Diffstat (limited to 'packages/0x.js/src/utils')
-rw-r--r-- | packages/0x.js/src/utils/exchange_transfer_simulator.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/0x.js/src/utils/exchange_transfer_simulator.ts b/packages/0x.js/src/utils/exchange_transfer_simulator.ts index 662cd210c..9a920c643 100644 --- a/packages/0x.js/src/utils/exchange_transfer_simulator.ts +++ b/packages/0x.js/src/utils/exchange_transfer_simulator.ts @@ -1,9 +1,10 @@ +import { BlockParamLiteral } from '@0xproject/types'; import { BigNumber } from '@0xproject/utils'; import * as _ from 'lodash'; import { TokenWrapper } from '../contract_wrappers/token_wrapper'; import { BalanceAndProxyAllowanceLazyStore } from '../stores/balance_proxy_allowance_lazy_store'; -import { BlockParamLiteral, ExchangeContractErrs, TradeSide, TransferType } from '../types'; +import { ExchangeContractErrs, TradeSide, TransferType } from '../types'; enum FailureReason { Balance = 'balance', |