Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ More expansive patch notes and explanations may be found in the specific [pathfi
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

### Changed

- The v10 JSON-RPC endpoint now supports final JSON-RPC v0.10.1 spec.

## [0.22.0-beta.3] - 2026-03-11

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion crates/rpc/src/v10.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ pub fn register_routes() -> RpcRouterBuilder {
.register("starknet_subscribeNewTransactions", SubscribeNewTransactions)
.register("starknet_subscribeEvents", SubscribeEvents)
.register("starknet_subscribeTransactionStatus", SubscribeTransactionStatus)
.register("starknet_specVersion", || "0.10.1-rc.3")
.register("starknet_specVersion", || "0.10.1")
.register("starknet_syncing", crate::method::syncing)
.register("starknet_traceBlockTransactions", crate::method::trace_block_transactions)
.register("starknet_traceTransaction", crate::method::trace_transaction)
Expand Down
2 changes: 1 addition & 1 deletion specs/rpc/v10/starknet_api_openrpc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"openrpc": "1.0.0-rc1",
"info": {
"version": "0.10.1-rc.3",
"version": "0.10.1",
"title": "StarkNet Node API",
"license": {}
},
Expand Down
2 changes: 1 addition & 1 deletion specs/rpc/v10/starknet_executables.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"openrpc": "1.0.0",
"info": {
"version": "0.10.1-rc.3",
"version": "0.10.1",
"title": "API for getting Starknet executables from nodes that store compiled artifacts",
"license": {}
},
Expand Down
2 changes: 1 addition & 1 deletion specs/rpc/v10/starknet_metadata.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"openrpc": "1.0.0",
"info": {
"version": "0.10.1-rc.3",
"version": "0.10.1",
"title": "Starknet ABI specs"
},
"methods": [],
Expand Down
2 changes: 1 addition & 1 deletion specs/rpc/v10/starknet_trace_api_openrpc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"openrpc": "1.0.0-rc1",
"info": {
"version": "0.10.1-rc.3",
"version": "0.10.1",
"title": "StarkNet Trace API",
"license": {}
},
Expand Down
2 changes: 1 addition & 1 deletion specs/rpc/v10/starknet_write_api.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"openrpc": "1.0.0-rc1",
"info": {
"version": "0.10.1-rc.3",
"version": "0.10.1",
"title": "StarkNet Node Write API",
"license": {}
},
Expand Down
2 changes: 1 addition & 1 deletion specs/rpc/v10/starknet_ws_api.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"openrpc": "1.3.2",
"info": {
"version": "0.10.1-rc.3",
"version": "0.10.1",
"title": "StarkNet WebSocket RPC API",
"license": {}
},
Expand Down
Loading