aboutsummaryrefslogtreecommitdiffstats
path: root/packages/order-utils/src/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/order-utils/src/index.ts')
-rw-r--r--packages/order-utils/src/index.ts13
1 files changed, 12 insertions, 1 deletions
diff --git a/packages/order-utils/src/index.ts b/packages/order-utils/src/index.ts
index 5122e60fc..514488e02 100644
--- a/packages/order-utils/src/index.ts
+++ b/packages/order-utils/src/index.ts
@@ -1,5 +1,14 @@
export { orderHashUtils } from './order_hash';
-export { isValidSignatureAsync, ecSignOrderHashAsync, addSignedMessagePrefix } from './signature_utils';
+export {
+ isValidSignatureAsync,
+ isValidPresignedSignatureAsync,
+ isValidWalletSignatureAsync,
+ isValidValidatorSignatureAsync,
+ isValidECSignature,
+ ecSignOrderHashAsync,
+ addSignedMessagePrefix,
+ parseECSignature,
+} from './signature_utils';
export { orderFactory } from './order_factory';
export { constants } from './constants';
export { crypto } from './crypto';
@@ -11,3 +20,5 @@ export { RemainingFillableCalculator } from './remaining_fillable_calculator';
export { OrderStateUtils } from './order_state_utils';
export { assetProxyUtils } from './asset_proxy_utils';
export { EIP712Utils } from './eip712_utils';
+export { OrderValidationUtils } from './order_validation_utils';
+export { ExchangeTransferSimulator } from './exchange_transfer_simulator';