How to connect to Buburuza?

Mainnet:

Testnet :

  • Network name : Buburuza Testnet

  • Chain ID (decimal) : 5456918401

  • Explorer : https://explorer.buburuza.com

  • Currency symbol : BUBU

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