Skip to content

Commit

Permalink
add tx hashes to getPendingTransactions
Browse files Browse the repository at this point in the history
  • Loading branch information
ArielElp committed Jul 25, 2023
1 parent 57f2421 commit 1459da6
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion api/starknet_api_openrpc.json
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,23 @@
"type": "array",
"title": "Pending Transactions",
"items": {
"$ref": "#/components/schemas/TXN"
"allOf": [
{
"$ref": "#/components/schemas/TXN"
},
{
"type": "object",
"properties": {
"transaction_hash": {
"title": "transaction hash",
"$ref": "#/components/schemas/TXN_HASH"
}
},
"required": [
"transaction_hash"
]
}
]
}
}
}
Expand Down

0 comments on commit 1459da6

Please sign in to comment.