diff options
author | Fabio Berger <me@fabioberger.com> | 2018-10-17 20:28:26 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-10-17 20:28:26 +0800 |
commit | 7d9009bb96fa576c98abd82200cd0fc2b4d27e40 (patch) | |
tree | 6725cc866ee5f1940f2b4611b8e9f94976626b6c /packages/json-schemas/schemas/tx_data_schema.ts | |
parent | 78e6063d929368cd08c324cc5e7e5b48af0079f6 (diff) | |
download | dexon-0x-contracts-7d9009bb96fa576c98abd82200cd0fc2b4d27e40.tar.gz dexon-0x-contracts-7d9009bb96fa576c98abd82200cd0fc2b4d27e40.tar.zst dexon-0x-contracts-7d9009bb96fa576c98abd82200cd0fc2b4d27e40.zip |
Convert all schemas to json files, so it's easier for devs in other languages to use it
Diffstat (limited to 'packages/json-schemas/schemas/tx_data_schema.ts')
-rw-r--r-- | packages/json-schemas/schemas/tx_data_schema.ts | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/packages/json-schemas/schemas/tx_data_schema.ts b/packages/json-schemas/schemas/tx_data_schema.ts deleted file mode 100644 index c57e18461..000000000 --- a/packages/json-schemas/schemas/tx_data_schema.ts +++ /dev/null @@ -1,32 +0,0 @@ -export const jsNumber = { - id: '/jsNumber', - type: 'number', - minimum: 0, -}; - -export const txDataSchema = { - id: '/txDataSchema', - properties: { - from: { $ref: '/addressSchema' }, - to: { $ref: '/addressSchema' }, - value: { - oneOf: [{ $ref: '/numberSchema' }, { $ref: '/jsNumber' }], - }, - gas: { - oneOf: [{ $ref: '/numberSchema' }, { $ref: '/jsNumber' }], - }, - gasPrice: { - oneOf: [{ $ref: '/numberSchema' }, { $ref: '/jsNumber' }], - }, - data: { - type: 'string', - pattern: '^0x[0-9a-f]*$', - }, - nonce: { - type: 'number', - minimum: 0, - }, - }, - required: ['from'], - type: 'object', -}; |