diff options
author | Amir Bandeali <abandeali1@gmail.com> | 2019-02-05 02:20:54 +0800 |
---|---|---|
committer | Amir Bandeali <abandeali1@gmail.com> | 2019-02-06 01:26:03 +0800 |
commit | af4ed0f39c9eb3e314a6b05de9cedab98e7cb233 (patch) | |
tree | 62ea668a6bbb6394b472e5433756e052e447b682 /python-packages/json_schemas | |
parent | eac254f9256499fda4cd3d739410c8180069e0c7 (diff) | |
download | dexon-0x-contracts-af4ed0f39c9eb3e314a6b05de9cedab98e7cb233.tar.gz dexon-0x-contracts-af4ed0f39c9eb3e314a6b05de9cedab98e7cb233.tar.zst dexon-0x-contracts-af4ed0f39c9eb3e314a6b05de9cedab98e7cb233.zip |
Update python JSON schema for 0x transactions
Diffstat (limited to 'python-packages/json_schemas')
-rw-r--r-- | python-packages/json_schemas/src/zero_ex/json_schemas/schemas/zero_ex_transaction_schema.json | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python-packages/json_schemas/src/zero_ex/json_schemas/schemas/zero_ex_transaction_schema.json b/python-packages/json_schemas/src/zero_ex/json_schemas/schemas/zero_ex_transaction_schema.json index 0c714f14d..ffdf1f229 100644 --- a/python-packages/json_schemas/src/zero_ex/json_schemas/schemas/zero_ex_transaction_schema.json +++ b/python-packages/json_schemas/src/zero_ex/json_schemas/schemas/zero_ex_transaction_schema.json @@ -1,10 +1,11 @@ { "id": "/zeroExTransactionSchema", "properties": { + "verifyingContractAddress": { "$ref": "/addressSchema" }, "data": { "$ref": "/hexSchema" }, "signerAddress": { "$ref": "/addressSchema" }, "salt": { "$ref": "/wholeNumberSchema" } }, - "required": ["data", "salt", "signerAddress"], + "required": ["verifyingContractAddress", "data", "salt", "signerAddress"], "type": "object" } |