Skip to content

Commit

Permalink
Merge pull request #2397 from eqlabs/krisztian/rpc-0.8-bump-version-t…
Browse files Browse the repository at this point in the history
…o-0.8.0-rc1

feat(rpc/v08): bump JSON-RPC spec version to 0.8.0-rc1
  • Loading branch information
kkovaacs authored Nov 21, 2024
2 parents b6dd10f + acbbab8 commit a11cfbe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add `pathfinder_getClassProof` endpoint to retrieve the Merkle proof of any class hash in the class trie.
- add `process_start_time_seconds` metric showing the unix timestamp when the process started.
- `--log-output-json` CLI option has been added to output the Pathfinder log in line-delimited JSON.
- Preliminary support has been added for the new JSON-RPC 0.8.0-rc1 specification.

### Changed

Expand Down
2 changes: 1 addition & 1 deletion crates/rpc/src/v08.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ pub fn register_routes() -> RpcRouterBuilder {
.register("starknet_subscribePendingTransactions", SubscribePendingTransactions)
.register("starknet_subscribeEvents", SubscribeEvents)
.register("starknet_subscribeTransactionStatus", SubscribeTransactionStatus)
.register("starknet_specVersion", || "0.8.0-rc0")
.register("starknet_specVersion", || "0.8.0-rc1")
.register("starknet_syncing", crate::method::syncing)
.register("starknet_traceBlockTransactions", crate::method::trace_block_transactions)
.register("starknet_traceTransaction", crate::method::trace_transaction)
Expand Down

0 comments on commit a11cfbe

Please sign in to comment.