Tor Support
dRPC supports access through the Tor network, allowing users to connect to its services while maintaining privacy and anonymity.
Onion address: 7ikxpzt676bjj3vvgdfafryn3qtyvhf4oscja3wzv6ga2nzo2z3ugoqd.onion
Only Ethereum is currently supported via Tor.
Usage#
Example of using dRPC through Tor with curl (assuming you have a Tor proxy running on 127.0.0.1:9050):
curl \
--socks5-hostname '127.0.0.1:9050' \
--url '7ikxpzt676bjj3vvgdfafryn3qtyvhf4oscja3wzv6ga2nzo2z3ugoqd.onion' \
--request POST \
--header 'Content-Type: application/json' \
--data '{"jsonrpc":"2.0","method":"eth_chainId","params":[],"id":1}'Regular dRPC free public Ethereum endpoint can also be accessed through Tor:
curl \
--socks5-hostname '127.0.0.1:9050' \
--url 'https://eth.drpc.org' \
--request POST \
--header 'Content-Type: application/json' \
--data '{"jsonrpc":"2.0","method":"eth_chainId","params":[],"id":1}'