Turbo RPC is a lightweight EVM RPC proxy server written in Rust. It is designed to be fast and efficient, making it an ideal choice for applications that require a read-heavy high-performance RPC server.
Run using the following command:
cargo run --bin turbo-rpc -- [OPTIONS]
--host <HOST>: Host to run the server on (default: 127.0.0.1)--port <PORT>: Port to run the server on (default: 8080)--config <CONFIG>: Path to the config file (default: config.yaml)
curl 'http://127.0.0.1:8080' \
--header 'Content-Type: application/json' \
--data '{
"method": "eth_blockNumber",
"id": 100,
"jsonrpc": "2.0"
}'The code in this project is free software under the MIT License.