Skip to content

Commit cbe3c5b

Browse files
starknet_transaction_prover: bump transaction prover spec version (#13336)
1 parent 505a372 commit cbe3c5b

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

crates/starknet_transaction_prover/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ curl -s -X POST http://localhost:3000 \
2020
Expected response:
2121

2222
```json
23-
{ "jsonrpc": "2.0", "id": 1, "result": "0.10.0" }
23+
{ "jsonrpc": "2.0", "id": 1, "result": "0.10.1" }
2424
```
2525

2626
## API Reference
@@ -41,7 +41,7 @@ curl -s -X POST http://localhost:3000 \
4141
Response:
4242

4343
```json
44-
{ "jsonrpc": "2.0", "id": 1, "result": "0.10.0" }
44+
{ "jsonrpc": "2.0", "id": 1, "result": "0.10.1" }
4545
```
4646

4747
### `starknet_proveTransaction`

crates/starknet_transaction_prover/resources/proving_api_openrpc.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"openrpc": "1.0.0-rc1",
33
"info": {
4-
"version": "0.10.0",
4+
"version": "0.10.1",
55
"title": "Starknet Transaction Prover API",
66
"description": "JSON-RPC API for proving Starknet transactions via the Starknet Transaction Prover.",
77
"license": {
@@ -17,7 +17,7 @@
1717
"params": [],
1818
"result": {
1919
"name": "spec_version",
20-
"description": "The Starknet RPC specification version (e.g. \"0.10.0\").",
20+
"description": "The Starknet RPC specification version (e.g. \"0.10.1\").",
2121
"schema": {
2222
"title": "Spec version",
2323
"type": "string"

crates/starknet_transaction_prover/src/server/rpc_api.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use crate::proving::virtual_snos_prover::ProveTransactionResult;
1616
pub trait ProvingRpc {
1717
/// Returns the spec version (serves as lightweight health check).
1818
///
19-
/// Returns "0.10.0" for Starknet RPC v0.10 compatibility.
19+
/// Returns "0.10.1" for Starknet RPC v0.10 compatibility.
2020
#[method(name = "specVersion")]
2121
async fn spec_version(&self) -> RpcResult<String>;
2222

crates/starknet_transaction_prover/src/server/rpc_impl.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use crate::server::errors::service_busy;
1616
use crate::server::rpc_api::ProvingRpcServer;
1717

1818
/// Starknet RPC specification version.
19-
pub(crate) const SPEC_VERSION: &str = "0.10.0";
19+
pub(crate) const SPEC_VERSION: &str = "0.10.1";
2020

2121
/// Implementation of the ProvingRpc trait.
2222
#[derive(Clone)]

0 commit comments

Comments
 (0)