Go to file
Bryan Stitt 0b5d2ca1cf track latest blocks 2022-04-27 04:36:11 +00:00
examples block watching vs subscribing 2022-04-25 20:26:54 +00:00
src track latest blocks 2022-04-27 04:36:11 +00:00
.dockerignore large improvements 2022-04-24 07:26:00 +00:00
.gitignore initial commit 2022-03-04 19:46:57 -08:00
Cargo.lock track latest blocks 2022-04-27 04:36:11 +00:00
Cargo.toml track latest blocks 2022-04-27 04:36:11 +00:00
Dockerfile add dockerfile with caches 2022-04-23 18:00:03 +00:00
LICENSE add LICENSE 2022-03-04 19:56:05 -08:00
README.md Update README.md 2022-03-04 21:00:10 -08:00
TODO.md watch new heads 2022-04-25 19:14:10 +00:00

web3-proxy

quick and dirty proxy for ethereum rpcs (or similar)

Signed transactions are sent to the configured private RPC (eden, flashbots, etc.). All other requests are sent to the configured primary RPC (alchemy, moralis, rivet, your own node, or one of many other providers).

cargo run -- --help
    Finished dev [unoptimized + debuginfo] target(s) in 0.04s
     Running `target/debug/eth-proxy --help`
Usage: eth-proxy --eth-primary-rpc <eth-primary-rpc> --eth-private-rpc <eth-private-rpc> [--listen-port <listen-port>]

Proxy Web3 Requests

Options:
  --eth-primary-rpc the primary Ethereum RPC server
  --eth-private-rpc the private Ethereum RPC server
  --listen-port     the port to listen on
  --help            display usage information
cargo run -r -- --eth-primary-rpc "https://your.favorite.provider"
curl -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"web3_clientVersion","params":[],"id":67}' 127.0.0.1:8845/eth

Todo

  • simple proxy
  • proper logging
  • load balance between multiple RPC servers
  • support more than just ETH
  • option to disable private rpc and send everything to primary
  • health check nodes by block height
  • measure latency to nodes
  • Dockerfile