Skip to content

Commit

Permalink
remove proven_on_l2 & execution_status
Browse files Browse the repository at this point in the history
  • Loading branch information
ArielElp committed Jul 31, 2024
1 parent 8029f1f commit e9723a9
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions api/starknet_api_openrpc.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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": {
Expand Down

0 comments on commit e9723a9

Please sign in to comment.