Skip to content

Commit a11cfbe

Browse files
authored
Merge pull request #2397 from eqlabs/krisztian/rpc-0.8-bump-version-to-0.8.0-rc1
feat(rpc/v08): bump JSON-RPC spec version to 0.8.0-rc1
2 parents b6dd10f + acbbab8 commit a11cfbe

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1616
- Add `pathfinder_getClassProof` endpoint to retrieve the Merkle proof of any class hash in the class trie.
1717
- add `process_start_time_seconds` metric showing the unix timestamp when the process started.
1818
- `--log-output-json` CLI option has been added to output the Pathfinder log in line-delimited JSON.
19+
- Preliminary support has been added for the new JSON-RPC 0.8.0-rc1 specification.
1920

2021
### Changed
2122

crates/rpc/src/v08.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ pub fn register_routes() -> RpcRouterBuilder {
3838
.register("starknet_subscribePendingTransactions", SubscribePendingTransactions)
3939
.register("starknet_subscribeEvents", SubscribeEvents)
4040
.register("starknet_subscribeTransactionStatus", SubscribeTransactionStatus)
41-
.register("starknet_specVersion", || "0.8.0-rc0")
41+
.register("starknet_specVersion", || "0.8.0-rc1")
4242
.register("starknet_syncing", crate::method::syncing)
4343
.register("starknet_traceBlockTransactions", crate::method::trace_block_transactions)
4444
.register("starknet_traceTransaction", crate::method::trace_transaction)

0 commit comments

Comments
 (0)