aboutsummaryrefslogtreecommitdiffstats
path: root/packages/json-schemas/schemas/call_data_schema.json
diff options
context:
space:
mode:
Diffstat (limited to 'packages/json-schemas/schemas/call_data_schema.json')
-rw-r--r--packages/json-schemas/schemas/call_data_schema.json27
1 files changed, 0 insertions, 27 deletions
diff --git a/packages/json-schemas/schemas/call_data_schema.json b/packages/json-schemas/schemas/call_data_schema.json
deleted file mode 100644
index e5e6e3282..000000000
--- a/packages/json-schemas/schemas/call_data_schema.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "id": "/callDataSchema",
- "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": [],
- "type": "object",
- "additionalProperties": false
-}