2 unstable releases

new 0.2.8 May 13, 2024
0.1.5 Jun 27, 2023
0.1.4 May 16, 2023
0.1.2 Apr 10, 2023
0.0.0 Mar 7, 2023

#1 in #open-rpc

Download history 1/week @ 2024-02-20 5/week @ 2024-02-27 1/week @ 2024-03-12 7/week @ 2024-03-26 26/week @ 2024-04-02

480 downloads per month

MIT license

105KB
2.5K SLoC

I am groot

[Proof of Concept] Rust code generator from OpenRPC spec

OpenRPC spec

JSON-RPC spec

StarkNet OpenRPC spec

Usage

  • Generate the code and then run suggested example:
export KEY="..."
export URL="https://starknet-mainnet.g.alchemy.com/v2/$KEY"

./x.sh

RUST_LOG=debug cargo run --example demo

cargo run --example gen > data.json
## Sample call
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","method":"starknet_getStateUpdate","params":[{"block_hash": "0x4684a9257747388a70848ccf222fd4c7e0bde27b84457e829ee48cac28ea21d"}],"id":1}' \
$URL

TODO

  1. async version of the Rpc trait and the client
  2. Seamless inclusion into a build process
    • extract -build sub-crate for [build-dependencies]

Misc

Total lines of code: find ./src -type f -name "*.rs" | xargs grep . | wc -l

Dependencies

~4–6MB
~108K SLoC