aboutsummaryrefslogtreecommitdiffstats
path: root/packages/json-schemas/src/schemas.ts
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-07-05 18:33:48 +0800
committerFabio Berger <me@fabioberger.com>2018-07-05 18:33:48 +0800
commit2a7b3aecc3886bb4b699df17a0efef984e633d1f (patch)
treeade60c329313350fcfb59d5372bf22f253eccff2 /packages/json-schemas/src/schemas.ts
parent75babed69317ab1da02a10706871ab0bb2293883 (diff)
downloaddexon-sol-tools-2a7b3aecc3886bb4b699df17a0efef984e633d1f.tar
dexon-sol-tools-2a7b3aecc3886bb4b699df17a0efef984e633d1f.tar.gz
dexon-sol-tools-2a7b3aecc3886bb4b699df17a0efef984e633d1f.tar.bz2
dexon-sol-tools-2a7b3aecc3886bb4b699df17a0efef984e633d1f.tar.lz
dexon-sol-tools-2a7b3aecc3886bb4b699df17a0efef984e633d1f.tar.xz
dexon-sol-tools-2a7b3aecc3886bb4b699df17a0efef984e633d1f.tar.zst
dexon-sol-tools-2a7b3aecc3886bb4b699df17a0efef984e633d1f.zip
Add CallData schema to json-schemas
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 77ea88f5c..4e13aeafb 100644
--- a/packages/json-schemas/src/schemas.ts
+++ b/packages/json-schemas/src/schemas.ts
@@ -1,5 +1,6 @@
import { addressSchema, hexSchema, numberSchema } from '../schemas/basic_type_schemas';
import { blockParamSchema, blockRangeSchema } from '../schemas/block_range_schema';
+import { callDataSchema } from '../schemas/call_data_schema';
import { ecSignatureSchema } from '../schemas/ec_signature_schema';
import { indexFilterValuesSchema } from '../schemas/index_filter_values_schema';
import { orderCancellationRequestsSchema } from '../schemas/order_cancel_schema';
@@ -31,6 +32,7 @@ import { jsNumber, txDataSchema } from '../schemas/tx_data_schema';
export const schemas = {
numberSchema,
addressSchema,
+ callDataSchema,
hexSchema,
ecSignatureSchema,
indexFilterValuesSchema,