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/stores | |
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/stores')
-rw-r--r-- | packages/0x.js/src/stores/balance_proxy_allowance_lazy_store.ts | 2 | ||||
-rw-r--r-- | packages/0x.js/src/stores/order_filled_cancelled_lazy_store.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/0x.js/src/stores/balance_proxy_allowance_lazy_store.ts b/packages/0x.js/src/stores/balance_proxy_allowance_lazy_store.ts index 33feea105..ede1319fe 100644 --- a/packages/0x.js/src/stores/balance_proxy_allowance_lazy_store.ts +++ b/packages/0x.js/src/stores/balance_proxy_allowance_lazy_store.ts @@ -1,8 +1,8 @@ +import { BlockParamLiteral } from '@0xproject/types'; import { BigNumber } from '@0xproject/utils'; import * as _ from 'lodash'; import { TokenWrapper } from '../contract_wrappers/token_wrapper'; -import { BlockParamLiteral } from '../types'; /** * Copy on read store for balances/proxyAllowances of tokens/accounts diff --git a/packages/0x.js/src/stores/order_filled_cancelled_lazy_store.ts b/packages/0x.js/src/stores/order_filled_cancelled_lazy_store.ts index e22364c09..0a0d93406 100644 --- a/packages/0x.js/src/stores/order_filled_cancelled_lazy_store.ts +++ b/packages/0x.js/src/stores/order_filled_cancelled_lazy_store.ts @@ -1,8 +1,8 @@ +import { BlockParamLiteral } from '@0xproject/types'; import { BigNumber } from '@0xproject/utils'; import * as _ from 'lodash'; import { ExchangeWrapper } from '../contract_wrappers/exchange_wrapper'; -import { BlockParamLiteral } from '../types'; /** * Copy on read store for filled/cancelled taker amounts |