From e9723a9a2c705c1aaac461865fe286d9ac6a7f6b Mon Sep 17 00:00:00 2001 From: Ariel Elperin Date: Wed, 31 Jul 2024 10:48:16 +0300 Subject: [PATCH] remove proven_on_l2 & execution_status --- api/starknet_api_openrpc.json | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/api/starknet_api_openrpc.json b/api/starknet_api_openrpc.json index dba43f1..d01e6e6 100644 --- a/api/starknet_api_openrpc.json +++ b/api/starknet_api_openrpc.json @@ -290,10 +290,6 @@ "title": "finality status", "$ref": "#/components/schemas/TXN_STATUS" }, - "execution_status": { - "title": "execution status", - "$ref": "#/components/schemas/TXN_EXECUTION_STATUS" - }, "failure_reason": { "title": "failure reason", "description": "the failure reason, only appears if finality_status is REJECTED", @@ -3030,13 +3026,13 @@ "TXN_STATUS": { "title": "Transaction status", "type": "string", - "enum": ["RECEIVED", "REJECTED", "ACCEPTED_ON_L2", "PROVEN_ON_L2", "ACCEPTED_ON_L1"], + "enum": ["RECEIVED", "REJECTED", "ACCEPTED_ON_L2", "ACCEPTED_ON_L1"], "description": "The finality status of the transaction, including the case the txn is still in the mempool or failed validation during the block construction phase" }, "TXN_FINALITY_STATUS": { "title": "Finality status", "type": "string", - "enum": ["ACCEPTED_ON_L2", "PROVEN_ON_L2", "ACCEPTED_ON_L1"], + "enum": ["ACCEPTED_ON_L2", "ACCEPTED_ON_L1"], "description": "The finality status of the transaction" }, "TXN_EXECUTION_STATUS": {