9 breaking releases

0.10.0 Mar 27, 2024
0.8.0 Dec 9, 2023
0.7.0 Oct 30, 2023
0.5.0 Jul 15, 2023
0.1.0 Jan 6, 2022

#1187 in Magic Beans

Download history 245/week @ 2023-12-23 349/week @ 2023-12-30 913/week @ 2024-01-06 788/week @ 2024-01-13 820/week @ 2024-01-20 580/week @ 2024-01-27 658/week @ 2024-02-03 871/week @ 2024-02-10 843/week @ 2024-02-17 1113/week @ 2024-02-24 1664/week @ 2024-03-02 1618/week @ 2024-03-09 1564/week @ 2024-03-16 2327/week @ 2024-03-23 1941/week @ 2024-03-30 1857/week @ 2024-04-06

8,027 downloads per month
Used in 13 crates

MIT/Apache

1MB
19K SLoC

Logo

starknet-rs

Complete Starknet library in Rust

starknet-version-v0.13.0 jsonrpc-spec-v0.6.0 linting-badge crates-badge

Note that starknet-rs is still experimental. Breaking changes will be made before the first stable release. The library is also NOT audited or reviewed for security at the moment. Use at your own risk.

The underlying cryptography library starknet-crypto does NOT provide constant-time guarantees.

Adding starknet-rs to your project

To use the crate from crates.io, add the following to your Cargo.toml file:

[dependencies]
starknet = "0.9.0"

Note that the crates.io version might be outdated. You may want to use the library directly from GitHub for all the latest features and fixes:

[dependencies]
starknet = { git = "https://github.com/xJonathanLEI/starknet-rs" }

Features

  • Sequencer gateway / feeder gateway client
  • Full node JSON-RPC API client
  • Smart contract deployment
  • Signer for using IAccount account contracts
  • Strongly-typed smart contract binding code generation from ABI

Crates

This workspace contains the following crates:

  • starknet: Re-export of other sub-crates (recommended)
  • starknet-core: Core data structures for interacting with Starknet
  • starknet-providers: Abstraction and implementation of clients for interacting with Starknet nodes and sequencers
  • starknet-contract: Types for deploying and interacting with Starknet smart contracts
  • starknet-crypto: Low-level cryptography utilities for Starknet
  • starknet-signers: Starknet signer implementations
  • starknet-accounts: Types for handling Starknet account abstraction
  • starknet-ff: Starknet field element type
  • starknet-curve: Starknet curve operations
  • starknet-macros: Useful macros for using the starknet crates

WebAssembly

starknet-rs can be used as a WebAssembly module. Check out this example.

Using starknet-rs from C++

starknet-rs can be used as a dynamic or static library from C++. Check out this example.

Performance

Benchmark results for native and WebAssembly targets are available for these crates:

For instructions on running the benchmark yourself, check here.

Example

Examples can be found in the examples folder:

  1. Get the latest block from alpha-goerli testnet

  2. Deploy contract to alpha-goerli testnet via UDC

  3. Mint yourself 1,000 TST tokens on alpha-goerli

    Make sure your account has some L2 Goerli ETH to pay for the transaction fee. You can use this faucet to fund your account.

  4. Declare Cairo 1 contract on alpha-goerli testnet

    Make sure your account has some L2 Goerli ETH to pay for the transaction fee. You can use this faucet to fund your account.

  5. Declare legacy Cairo 0 contract on alpha-goerli testnet

    Make sure your account has some L2 Goerli ETH to pay for the transaction fee. You can use this faucet to fund your account.

  6. Query the latest block number with JSON-RPC

  7. Call a contract view function

  8. Deploy an Argent X account to a pre-funded address

  9. Parsing a JSON-RPC request on the server side

  10. Inspecting a erased provider-specific error type

License

Licensed under either of

at your option.

Dependencies

~11–26MB
~398K SLoC