diff options
author | Fabio Berger <me@fabioberger.com> | 2018-08-04 03:30:57 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-08-04 03:30:57 +0800 |
commit | bcc1ad20869d10fb16678619e6fa411e53a07742 (patch) | |
tree | 6caca18692e590c04a28a2eb858ad6a231f277a7 /packages/order-utils/src | |
parent | 343cd05363166a7a93fca361d5547b39f3e83d99 (diff) | |
download | dexon-sol-tools-bcc1ad20869d10fb16678619e6fa411e53a07742.tar dexon-sol-tools-bcc1ad20869d10fb16678619e6fa411e53a07742.tar.gz dexon-sol-tools-bcc1ad20869d10fb16678619e6fa411e53a07742.tar.bz2 dexon-sol-tools-bcc1ad20869d10fb16678619e6fa411e53a07742.tar.lz dexon-sol-tools-bcc1ad20869d10fb16678619e6fa411e53a07742.tar.xz dexon-sol-tools-bcc1ad20869d10fb16678619e6fa411e53a07742.tar.zst dexon-sol-tools-bcc1ad20869d10fb16678619e6fa411e53a07742.zip |
Re-order index.ts and add missing types
Diffstat (limited to 'packages/order-utils/src')
-rw-r--r-- | packages/order-utils/src/index.ts | 35 |
1 files changed, 23 insertions, 12 deletions
diff --git a/packages/order-utils/src/index.ts b/packages/order-utils/src/index.ts index 85d26de81..50a5106ca 100644 --- a/packages/order-utils/src/index.ts +++ b/packages/order-utils/src/index.ts @@ -1,6 +1,29 @@ export { orderHashUtils } from './order_hash'; export { signatureUtils } from './signature_utils'; export { generatePseudoRandomSalt } from './salt'; +export { assetDataUtils } from './asset_data_utils'; +export { EIP712Utils } from './eip712_utils'; + +export { OrderStateUtils } from './order_state_utils'; +export { AbstractBalanceAndProxyAllowanceFetcher } from './abstract/abstract_balance_and_proxy_allowance_fetcher'; +export { AbstractOrderFilledCancelledFetcher } from './abstract/abstract_order_filled_cancelled_fetcher'; + +export { OrderValidationUtils } from './order_validation_utils'; +export { ExchangeTransferSimulator } from './exchange_transfer_simulator'; +export { BalanceAndProxyAllowanceLazyStore } from './store/balance_and_proxy_allowance_lazy_store'; +export { OrderFilledCancelledLazyStore } from './store/order_filled_cancelled_lazy_store'; + +export { Provider } from 'ethereum-types'; +export { + SignedOrder, + Order, + OrderRelevantState, + OrderState, + ECSignature, + ERC20AssetData, + ERC721AssetData, + AssetProxyId, +} from '@0xproject/types'; export { OrderError, MessagePrefixType, @@ -11,15 +34,3 @@ export { TradeSide, TransferType, } from './types'; -export { AbstractBalanceAndProxyAllowanceFetcher } from './abstract/abstract_balance_and_proxy_allowance_fetcher'; -export { AbstractOrderFilledCancelledFetcher } from './abstract/abstract_order_filled_cancelled_fetcher'; -export { BalanceAndProxyAllowanceLazyStore } from './store/balance_and_proxy_allowance_lazy_store'; -export { OrderFilledCancelledLazyStore } from './store/order_filled_cancelled_lazy_store'; -export { RemainingFillableCalculator } from './remaining_fillable_calculator'; -export { OrderStateUtils } from './order_state_utils'; -export { assetDataUtils } from './asset_data_utils'; -export { EIP712Utils } from './eip712_utils'; -export { OrderValidationUtils } from './order_validation_utils'; -export { ExchangeTransferSimulator } from './exchange_transfer_simulator'; -export { Provider } from 'ethereum-types'; -export { SignedOrder, Order, ECSignature, ERC20AssetData, ERC721AssetData, AssetProxyId } from '@0xproject/types'; |