diff options
author | Fabio Berger <me@fabioberger.com> | 2018-08-21 23:37:03 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-08-21 23:37:03 +0800 |
commit | 7553411fb2c0483e08046a85cc3b694e2063cbfd (patch) | |
tree | cc8151247ae1933340dcffbcc8aaa47ba0b4b512 /packages/order-utils/src/index.ts | |
parent | c52c94214f9eb9ba25edc5e4599048663cd9cfa1 (diff) | |
download | dexon-sol-tools-7553411fb2c0483e08046a85cc3b694e2063cbfd.tar dexon-sol-tools-7553411fb2c0483e08046a85cc3b694e2063cbfd.tar.gz dexon-sol-tools-7553411fb2c0483e08046a85cc3b694e2063cbfd.tar.bz2 dexon-sol-tools-7553411fb2c0483e08046a85cc3b694e2063cbfd.tar.lz dexon-sol-tools-7553411fb2c0483e08046a85cc3b694e2063cbfd.tar.xz dexon-sol-tools-7553411fb2c0483e08046a85cc3b694e2063cbfd.tar.zst dexon-sol-tools-7553411fb2c0483e08046a85cc3b694e2063cbfd.zip |
Fix up order-utils
Diffstat (limited to 'packages/order-utils/src/index.ts')
-rw-r--r-- | packages/order-utils/src/index.ts | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/packages/order-utils/src/index.ts b/packages/order-utils/src/index.ts index 1f393b0c4..354299304 100644 --- a/packages/order-utils/src/index.ts +++ b/packages/order-utils/src/index.ts @@ -9,14 +9,16 @@ export { sortingUtils } from './sorting_utils'; export { OrderStateUtils } from './order_state_utils'; export { AbstractBalanceAndProxyAllowanceFetcher } from './abstract/abstract_balance_and_proxy_allowance_fetcher'; +export { AbstractBalanceAndProxyAllowanceLazyStore } from './abstract/abstract_balance_and_proxy_allowance_lazy_store'; export { AbstractOrderFilledCancelledFetcher } from './abstract/abstract_order_filled_cancelled_fetcher'; +export { AbstractOrderFilledCancelledLazyStore } from './abstract/abstract_order_filled_cancelled_lazy_store'; 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 { Provider, JSONRPCRequestPayload, JSONRPCErrorCallback, JSONRPCResponsePayload } from 'ethereum-types'; export { SignedOrder, Order, @@ -26,13 +28,21 @@ export { ERC20AssetData, ERC721AssetData, AssetProxyId, + SignerType, + SignatureType, + OrderStateValid, + OrderStateInvalid, + ExchangeContractErrs, } from '@0xproject/types'; export { - CreateOrderOpts, OrderError, EIP712Parameter, EIP712Schema, EIP712Types, TradeSide, TransferType, + FindFeeOrdersThatCoverFeesForTargetOrdersOpts, + FindOrdersThatCoverMakerAssetFillAmountOpts, + FeeOrdersAndRemainingFeeAmount, + OrdersAndRemainingFillAmount, } from './types'; |