Skip to content

Commit 6939d90

Browse files
feat: jsonrpc v0.8.0 and starknet v0.13.4 (#707)
Co-authored-by: marioiordanov <[email protected]>
1 parent 0530352 commit 6939d90

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+3825
-3738
lines changed

Cargo.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+13-17
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
**Complete Starknet library in Rust[](https://www.reddit.com/r/rust/comments/12e7tdb/rust_trademark_policy_feedback_form/)**
77

8-
![starknet-version-v0.13.0](https://img.shields.io/badge/Starknet_Version-v0.13.0-2ea44f?logo=ethereum)
9-
[![jsonrpc-spec-v0.7.1](https://img.shields.io/badge/JSON--RPC-v0.7.1-2ea44f?logo=ethereum)](https://github.com/starkware-libs/starknet-specs/tree/v0.7.1)
8+
![starknet-version-v0.13.4](https://img.shields.io/badge/Starknet_Version-v0.13.4-2ea44f?logo=ethereum)
9+
[![jsonrpc-spec-v0.8.0](https://img.shields.io/badge/JSON--RPC-v0.7.1-2ea44f?logo=ethereum)](https://github.com/starkware-libs/starknet-specs/tree/v0.8.0)
1010
[![linting-badge](https://github.com/xJonathanLEI/starknet-rs/actions/workflows/lint.yaml/badge.svg?branch=master)](https://github.com/xJonathanLEI/starknet-rs/actions/workflows/lint.yaml)
1111
[![crates-badge](https://img.shields.io/crates/v/starknet.svg)](https://crates.io/crates/starknet)
1212

@@ -87,31 +87,27 @@ Examples can be found in the [examples folder](./examples):
8787

8888
Make sure your account has some L2 Sepolia ETH to pay for the transaction fee.
8989

90-
5. [Declare legacy Cairo 0 contract on `alpha-sepolia` testnet](./examples/declare_cairo0_contract.rs)
90+
5. [Query the latest block number with JSON-RPC](./examples/jsonrpc.rs)
9191

92-
Make sure your account has some L2 Sepolia ETH to pay for the transaction fee.
93-
94-
6. [Query the latest block number with JSON-RPC](./examples/jsonrpc.rs)
95-
96-
7. [Encoding and decoding Cairo types](./examples/serde.rs)
92+
6. [Encoding and decoding Cairo types](./examples/serde.rs)
9793

98-
8. [Parse a SNIP-12 message and compute its hash](./examples/snip_12_json.rs)
94+
7. [Parse a SNIP-12 message and compute its hash](./examples/snip_12_json.rs)
9995

100-
9. [Batched JSON-RPC requests](./examples/batch.rs)
96+
8. [Batched JSON-RPC requests](./examples/batch.rs)
10197

102-
10. [Call a contract view function](./examples/erc20_balance.rs)
98+
9. [Call a contract view function](./examples/erc20_balance.rs)
10399

104-
11. [Deploy an Argent X account to a pre-funded address](./examples/deploy_argent_account.rs)
100+
10. [Deploy an Argent X account to a pre-funded address](./examples/deploy_argent_account.rs)
105101

106-
12. [Inspect public key with Ledger](./examples/ledger_public_key.rs)
102+
11. [Inspect public key with Ledger](./examples/ledger_public_key.rs)
107103

108-
13. [Deploy an OpenZeppelin account with Ledger](./examples/deploy_account_with_ledger.rs)
104+
12. [Deploy an OpenZeppelin account with Ledger](./examples/deploy_account_with_ledger.rs)
109105

110-
14. [Transfer ERC20 tokens with Ledger](./examples/transfer_with_ledger.rs)
106+
13. [Transfer ERC20 tokens with Ledger](./examples/transfer_with_ledger.rs)
111107

112-
15. [Parsing a JSON-RPC request on the server side](./examples/parse_jsonrpc_request.rs)
108+
14. [Parsing a JSON-RPC request on the server side](./examples/parse_jsonrpc_request.rs)
113109

114-
16. [Inspecting a erased provider-specific error type](./examples/downcast_provider_error.rs)
110+
15. [Inspecting a erased provider-specific error type](./examples/downcast_provider_error.rs)
115111

116112
## License
117113

examples/batch.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use starknet_core::types::{
1010
#[tokio::main]
1111
async fn main() {
1212
let provider = JsonRpcClient::new(HttpTransport::new(
13-
Url::parse("https://starknet-sepolia.public.blastapi.io/rpc/v0_7").unwrap(),
13+
Url::parse("https://starknet-sepolia.public.blastapi.io/rpc/v0_8").unwrap(),
1414
));
1515

1616
let responses = provider

examples/declare_cairo0_contract.rs

-50
This file was deleted.

examples/declare_cairo1_contract.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ async fn main() {
2424
let compiled_class_hash = Felt::from_hex("COMPILED_CASM_CLASS_HASH_IN_HEX_HERE").unwrap();
2525

2626
let provider = JsonRpcClient::new(HttpTransport::new(
27-
Url::parse("https://starknet-sepolia.public.blastapi.io/rpc/v0_7").unwrap(),
27+
Url::parse("https://starknet-sepolia.public.blastapi.io/rpc/v0_8").unwrap(),
2828
));
2929

3030
let signer = LocalWallet::from(SigningKey::from_secret_scalar(

examples/deploy_account_with_ledger.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ async fn main() {
1919
let salt = felt!("12345678");
2020

2121
let provider = JsonRpcClient::new(HttpTransport::new(
22-
Url::parse("https://starknet-sepolia.public.blastapi.io/rpc/v0_7").unwrap(),
22+
Url::parse("https://starknet-sepolia.public.blastapi.io/rpc/v0_8").unwrap(),
2323
));
2424

2525
let signer = LedgerSigner::new(

examples/deploy_argent_account.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ async fn main() {
1818
let salt = felt!("12345678");
1919

2020
let provider = JsonRpcClient::new(HttpTransport::new(
21-
Url::parse("https://starknet-sepolia.public.blastapi.io/rpc/v0_7").unwrap(),
21+
Url::parse("https://starknet-sepolia.public.blastapi.io/rpc/v0_8").unwrap(),
2222
));
2323

2424
let signer = LocalWallet::from(SigningKey::from_secret_scalar(

examples/deploy_contract.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ async fn main() {
2424
let class_hash = contract_artifact.class_hash().unwrap();
2525

2626
let provider = JsonRpcClient::new(HttpTransport::new(
27-
Url::parse("https://starknet-sepolia.public.blastapi.io/rpc/v0_7").unwrap(),
27+
Url::parse("https://starknet-sepolia.public.blastapi.io/rpc/v0_8").unwrap(),
2828
));
2929

3030
let signer = LocalWallet::from(SigningKey::from_secret_scalar(

examples/erc20_balance.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use starknet::{
1010
#[tokio::main]
1111
async fn main() {
1212
let provider = JsonRpcClient::new(HttpTransport::new(
13-
Url::parse("https://starknet-sepolia.public.blastapi.io/rpc/v0_7").unwrap(),
13+
Url::parse("https://starknet-sepolia.public.blastapi.io/rpc/v0_8").unwrap(),
1414
));
1515

1616
let tst_token_address =

examples/get_block.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use starknet::{
99
#[tokio::main]
1010
async fn main() {
1111
let provider = JsonRpcClient::new(HttpTransport::new(
12-
Url::parse("https://starknet-sepolia.public.blastapi.io/rpc/v0_7").unwrap(),
12+
Url::parse("https://starknet-sepolia.public.blastapi.io/rpc/v0_8").unwrap(),
1313
));
1414

1515
let latest_block = provider

examples/jsonrpc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use starknet::providers::{
66
#[tokio::main]
77
async fn main() {
88
let provider = JsonRpcClient::new(HttpTransport::new(
9-
Url::parse("https://starknet-sepolia.public.blastapi.io/rpc/v0_7").unwrap(),
9+
Url::parse("https://starknet-sepolia.public.blastapi.io/rpc/v0_8").unwrap(),
1010
));
1111

1212
let block_number = provider.block_number().await.unwrap();

examples/mint_tokens.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use starknet::{
1515
#[tokio::main]
1616
async fn main() {
1717
let provider = JsonRpcClient::new(HttpTransport::new(
18-
Url::parse("https://starknet-sepolia.public.blastapi.io/rpc/v0_7").unwrap(),
18+
Url::parse("https://starknet-sepolia.public.blastapi.io/rpc/v0_8").unwrap(),
1919
));
2020

2121
let signer = LocalWallet::from(SigningKey::from_secret_scalar(

examples/transfer_with_ledger.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use starknet::{
1616
#[tokio::main]
1717
async fn main() {
1818
let provider = JsonRpcClient::new(HttpTransport::new(
19-
Url::parse("https://starknet-sepolia.public.blastapi.io/rpc/v0_7").unwrap(),
19+
Url::parse("https://starknet-sepolia.public.blastapi.io/rpc/v0_8").unwrap(),
2020
));
2121

2222
let signer = LedgerSigner::new(

0 commit comments

Comments
 (0)