diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-07-05 22:00:50 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-05 22:00:50 +0800 |
commit | 01c6efeaf10524a9f412c7c638c99afcf0fd3070 (patch) | |
tree | fa5dc6f41c56970dd82e9bf0a8d407dee43f823b /packages/json-schemas/src/schemas.ts | |
parent | 22cf7bee5b089384d43e6df0101699491c17847f (diff) | |
parent | 87a7a4ad2d55641cbe06d7157df0d8f0996d033a (diff) | |
download | dexon-sol-tools-01c6efeaf10524a9f412c7c638c99afcf0fd3070.tar dexon-sol-tools-01c6efeaf10524a9f412c7c638c99afcf0fd3070.tar.gz dexon-sol-tools-01c6efeaf10524a9f412c7c638c99afcf0fd3070.tar.bz2 dexon-sol-tools-01c6efeaf10524a9f412c7c638c99afcf0fd3070.tar.lz dexon-sol-tools-01c6efeaf10524a9f412c7c638c99afcf0fd3070.tar.xz dexon-sol-tools-01c6efeaf10524a9f412c7c638c99afcf0fd3070.tar.zst dexon-sol-tools-01c6efeaf10524a9f412c7c638c99afcf0fd3070.zip |
Merge branch 'v2-prototype' into v2-contract-wrappers-WIP
Diffstat (limited to 'packages/json-schemas/src/schemas.ts')
-rw-r--r-- | packages/json-schemas/src/schemas.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/json-schemas/src/schemas.ts b/packages/json-schemas/src/schemas.ts index 93c059e0b..8b7c538ed 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 { ecSignatureParameterSchema, ecSignatureSchema } from '../schemas/ec_signature_schema'; import { indexFilterValuesSchema } from '../schemas/index_filter_values_schema'; import { orderCancellationRequestsSchema } from '../schemas/order_cancel_schema'; @@ -32,6 +33,7 @@ import { jsNumber, txDataSchema } from '../schemas/tx_data_schema'; export const schemas = { numberSchema, addressSchema, + callDataSchema, hexSchema, ecSignatureParameterSchema, ecSignatureSchema, |