aboutsummaryrefslogtreecommitdiffstats
path: root/packages/order-utils
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-06-05 03:53:48 +0800
committerFabio Berger <me@fabioberger.com>2018-06-05 03:53:48 +0800
commitb9bc58ef100b0ef3b762d3c8df77c5abc48a120b (patch)
tree611ca15451758893d6fff75bf43f0b7b9132b091 /packages/order-utils
parent7bcf05fd190cb1bf6bd069bb9e46384595b60221 (diff)
downloaddexon-sol-tools-b9bc58ef100b0ef3b762d3c8df77c5abc48a120b.tar
dexon-sol-tools-b9bc58ef100b0ef3b762d3c8df77c5abc48a120b.tar.gz
dexon-sol-tools-b9bc58ef100b0ef3b762d3c8df77c5abc48a120b.tar.bz2
dexon-sol-tools-b9bc58ef100b0ef3b762d3c8df77c5abc48a120b.tar.lz
dexon-sol-tools-b9bc58ef100b0ef3b762d3c8df77c5abc48a120b.tar.xz
dexon-sol-tools-b9bc58ef100b0ef3b762d3c8df77c5abc48a120b.tar.zst
dexon-sol-tools-b9bc58ef100b0ef3b762d3c8df77c5abc48a120b.zip
Add missing exports to order-utils and add CHANGELOG entry
Diffstat (limited to 'packages/order-utils')
-rw-r--r--packages/order-utils/CHANGELOG.json9
-rw-r--r--packages/order-utils/src/index.ts10
2 files changed, 18 insertions, 1 deletions
diff --git a/packages/order-utils/CHANGELOG.json b/packages/order-utils/CHANGELOG.json
index 1bdb25347..a3e41e427 100644
--- a/packages/order-utils/CHANGELOG.json
+++ b/packages/order-utils/CHANGELOG.json
@@ -1,5 +1,14 @@
[
{
+ "version": "0.1.0",
+ "changes": [
+ {
+ "note": "Make order-utils compatible with V2 of 0x protocol",
+ "pr": 636
+ }
+ ]
+ },
+ {
"version": "0.0.5",
"changes": [
{
diff --git a/packages/order-utils/src/index.ts b/packages/order-utils/src/index.ts
index b844fbfcb..cb859dcb9 100644
--- a/packages/order-utils/src/index.ts
+++ b/packages/order-utils/src/index.ts
@@ -1,5 +1,13 @@
export { orderHashUtils } from './order_hash';
-export { isValidSignatureAsync, ecSignOrderHashAsync, addSignedMessagePrefix } from './signature_utils';
+export {
+ isValidSignatureAsync,
+ isValidPresignedSignatureAsync,
+ isValidWalletSignatureAsync,
+ isValidValidatorSignatureAsync,
+ isValidECSignature,
+ ecSignOrderHashAsync,
+ addSignedMessagePrefix,
+} from './signature_utils';
export { orderFactory } from './order_factory';
export { constants } from './constants';
export { crypto } from './crypto';