diff options
author | Brandon Millman <brandon@0xproject.com> | 2018-08-06 05:47:42 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-06 05:47:42 +0800 |
commit | 47fef1f8ff583879fa83a7a44086b14f69c09e21 (patch) | |
tree | 333f93d99e32e75739e3f76bbaa8c393249f71ff /packages/order-utils/src/index.ts | |
parent | 9f7f61085c1a6989b79df575beb0b5d8f2b3652d (diff) | |
parent | 3cb955c136bf47b5f40cdbc44bcc4d19ec6d6453 (diff) | |
download | dexon-sol-tools-47fef1f8ff583879fa83a7a44086b14f69c09e21.tar dexon-sol-tools-47fef1f8ff583879fa83a7a44086b14f69c09e21.tar.gz dexon-sol-tools-47fef1f8ff583879fa83a7a44086b14f69c09e21.tar.bz2 dexon-sol-tools-47fef1f8ff583879fa83a7a44086b14f69c09e21.tar.lz dexon-sol-tools-47fef1f8ff583879fa83a7a44086b14f69c09e21.tar.xz dexon-sol-tools-47fef1f8ff583879fa83a7a44086b14f69c09e21.tar.zst dexon-sol-tools-47fef1f8ff583879fa83a7a44086b14f69c09e21.zip |
Merge pull request #936 from 0xProject/feature/contract-wrappers/forwader-optimizations
ForwarderWrapper order optimizations
Diffstat (limited to 'packages/order-utils/src/index.ts')
-rw-r--r-- | packages/order-utils/src/index.ts | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/packages/order-utils/src/index.ts b/packages/order-utils/src/index.ts index 76be63bb8..129eb0a3d 100644 --- a/packages/order-utils/src/index.ts +++ b/packages/order-utils/src/index.ts @@ -13,7 +13,15 @@ export { orderFactory } from './order_factory'; export { constants } from './constants'; export { crypto } from './crypto'; export { generatePseudoRandomSalt } from './salt'; -export { OrderError, MessagePrefixType, MessagePrefixOpts, EIP712Parameter, EIP712Schema, EIP712Types } from './types'; +export { + CreateOrderOpts, + OrderError, + MessagePrefixType, + MessagePrefixOpts, + EIP712Parameter, + EIP712Schema, + EIP712Types, +} 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'; |