aboutsummaryrefslogtreecommitdiffstats
path: root/python-packages/json_schemas/src/zero_ex/json_schemas/schemas/tx_data_schema.json
diff options
context:
space:
mode:
Diffstat (limited to 'python-packages/json_schemas/src/zero_ex/json_schemas/schemas/tx_data_schema.json')
-rw-r--r--python-packages/json_schemas/src/zero_ex/json_schemas/schemas/tx_data_schema.json26
1 files changed, 0 insertions, 26 deletions
diff --git a/python-packages/json_schemas/src/zero_ex/json_schemas/schemas/tx_data_schema.json b/python-packages/json_schemas/src/zero_ex/json_schemas/schemas/tx_data_schema.json
deleted file mode 100644
index 8c3daba4e..000000000
--- a/python-packages/json_schemas/src/zero_ex/json_schemas/schemas/tx_data_schema.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "id": "/txDataSchema",
- "properties": {
- "from": { "$ref": "/addressSchema" },
- "to": { "$ref": "/addressSchema" },
- "value": {
- "oneOf": [{ "$ref": "/numberSchema" }, { "$ref": "/jsNumberSchema" }]
- },
- "gas": {
- "oneOf": [{ "$ref": "/numberSchema" }, { "$ref": "/jsNumberSchema" }]
- },
- "gasPrice": {
- "oneOf": [{ "$ref": "/numberSchema" }, { "$ref": "/jsNumberSchema" }]
- },
- "data": {
- "type": "string",
- "pattern": "^0x[0-9a-f]*$"
- },
- "nonce": {
- "type": "number",
- "minimum": 0
- }
- },
- "required": ["from"],
- "type": "object"
-}