How to connect to Buburuza?

Mainnet:

Testnet :

Quick check (JSON-RPC using curl) Replace <RPC_URL> with your RPC URL:

curl -s -X POST -H "Content-Type: application/json" \
  --data '{"jsonrpc":"2.0","id":1,"method":"eth_blockNumber","params":[]}' \
  <RPC_URL>

Response will include the latest block number (hex). If you get a result, RPC is working.

Programmatic chainId (ethers.js)

Last updated