aboutsummaryrefslogtreecommitdiffstats
path: root/packages/json-schemas/src/schemas.ts
diff options
context:
space:
mode:
authorLeonid <logvinov.leon@gmail.com>2017-12-19 19:10:59 +0800
committerGitHub <noreply@github.com>2017-12-19 19:10:59 +0800
commit04268d7f4b4a8a3496518a450bfcf01bb056a57e (patch)
tree089c743f946ff175838b4ee3142d5ead1aecdc0c /packages/json-schemas/src/schemas.ts
parentc63f76dde7267c54328d2f12f401d94484e5a91a (diff)
parent156dae1d33bd0a19c764262fbf0c9d6743425fc6 (diff)
downloaddexon-0x-contracts-04268d7f4b4a8a3496518a450bfcf01bb056a57e.tar.gz
dexon-0x-contracts-04268d7f4b4a8a3496518a450bfcf01bb056a57e.tar.zst
dexon-0x-contracts-04268d7f4b4a8a3496518a450bfcf01bb056a57e.zip
Merge pull request #272 from 0xProject/fix/subscription-opts
Rename SubscriptionOpts to BlockRange
Diffstat (limited to 'packages/json-schemas/src/schemas.ts')
-rw-r--r--packages/json-schemas/src/schemas.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/json-schemas/src/schemas.ts b/packages/json-schemas/src/schemas.ts
index 69164cbc7..854291a71 100644
--- a/packages/json-schemas/src/schemas.ts
+++ b/packages/json-schemas/src/schemas.ts
@@ -3,6 +3,10 @@ import {
numberSchema,
} from '../schemas/basic_type_schemas';
import {
+ blockParamSchema,
+ blockRangeSchema,
+} from '../schemas/block_range_schema';
+import {
ecSignatureParameterSchema,
ecSignatureSchema,
} from '../schemas/ec_signature_schema';
@@ -56,10 +60,6 @@ import {
signedOrdersSchema,
} from '../schemas/signed_orders_schema';
import {
- blockParamSchema,
- subscriptionOptsSchema,
-} from '../schemas/subscription_opts_schema';
-import {
tokenSchema,
} from '../schemas/token_schema';
import {
@@ -81,7 +81,7 @@ export const schemas = {
signedOrderSchema,
signedOrdersSchema,
blockParamSchema,
- subscriptionOptsSchema,
+ blockRangeSchema,
tokenSchema,
jsNumber,
txDataSchema,