aboutsummaryrefslogtreecommitdiffstats
path: root/packages/json-schemas/src/schemas.ts
diff options
context:
space:
mode:
authorKadinsky <kandinsky454@protonmail.ch>2018-10-23 05:01:30 +0800
committerGitHub <noreply@github.com>2018-10-23 05:01:30 +0800
commitbe97eebe022739bf7f993d17eda7d26ad4ef448a (patch)
treea782be168db5cfe63958da4758621a7b2a84ca30 /packages/json-schemas/src/schemas.ts
parent19f9649e74f487714f7094e013480f7b8e81090c (diff)
parentdbf75a43c37af31858dfca4026ab12f0491c520f (diff)
downloaddexon-sol-tools-be97eebe022739bf7f993d17eda7d26ad4ef448a.tar
dexon-sol-tools-be97eebe022739bf7f993d17eda7d26ad4ef448a.tar.gz
dexon-sol-tools-be97eebe022739bf7f993d17eda7d26ad4ef448a.tar.bz2
dexon-sol-tools-be97eebe022739bf7f993d17eda7d26ad4ef448a.tar.lz
dexon-sol-tools-be97eebe022739bf7f993d17eda7d26ad4ef448a.tar.xz
dexon-sol-tools-be97eebe022739bf7f993d17eda7d26ad4ef448a.tar.zst
dexon-sol-tools-be97eebe022739bf7f993d17eda7d26ad4ef448a.zip
Merge pull request #1173 from 0xProject/fixSchemaBug
Fix number schema bug
Diffstat (limited to 'packages/json-schemas/src/schemas.ts')
-rw-r--r--packages/json-schemas/src/schemas.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/json-schemas/src/schemas.ts b/packages/json-schemas/src/schemas.ts
index 8318df617..8ece5de75 100644
--- a/packages/json-schemas/src/schemas.ts
+++ b/packages/json-schemas/src/schemas.ts
@@ -34,6 +34,7 @@ import * as signedOrderSchema from '../schemas/signed_order_schema.json';
import * as signedOrdersSchema from '../schemas/signed_orders_schema.json';
import * as tokenSchema from '../schemas/token_schema.json';
import * as txDataSchema from '../schemas/tx_data_schema.json';
+import * as wholeNumberSchema from '../schemas/whole_number_schema.json';
import * as zeroExTransactionSchema from '../schemas/zero_ex_transaction_schema.json';
export const schemas = {
@@ -74,4 +75,5 @@ export const schemas = {
relayerApiOrdersResponseSchema,
relayerApiAssetDataPairsSchema,
zeroExTransactionSchema,
+ wholeNumberSchema,
};