Bitway Public RPC Endpoints
Use these public Bitway mainnet endpoints for development, diagnostics, and light application queries. For production systems, run dedicated infrastructure or use a provider plan with explicit rate limits and support.
Endpoint Details
| Service | URL | Purpose |
|---|---|---|
| Tendermint RPC | https://bitway-rpc.noders.services | Node status, blocks, transactions, consensus queries |
| Cosmos REST API | https://bitway-api.noders.services | Account, staking, governance, and module queries |
| gRPC | bitway-grpc.noders.services:443 | High-performance protobuf queries |
Network Information
| Component | Value |
|---|---|
| Network | Bitway Mainnet |
| Chain ID | bitway-1 |
| Daemon | bitwayd |
| Current Node Version | v2.0.1 |
| Native Denom | uside |
JavaScript Example
const rpcUrl = 'https://bitway-rpc.noders.services';
const apiUrl = 'https://bitway-api.noders.services';
const status = await fetch(`${rpcUrl}/status`).then((response) => response.json());
console.log(status.result.node_info.network);
const nodeInfo = await fetch(`${apiUrl}/cosmos/base/tendermint/v1beta1/node_info`)
.then((response) => response.json());
console.log(nodeInfo.default_node_info.network);
cURL Checks
curl -s https://bitway-rpc.noders.services/status | jq .
curl -s https://bitway-api.noders.services/cosmos/base/tendermint/v1beta1/node_info | jq .
gRPC Check
grpcurl bitway-grpc.noders.services:443 list
Bootstrap Endpoints
SEED="e7d6b8b779fb2fffb6a7b157955b984d923f8054@bitway-seed.noders.services:11733"
PEER="d28ad62b455115460bad695602e941c4b13135ec@bitway-rpc.noders.services:23456"
Data Files
curl -L https://snapshots.noders.services/mainnet/bitway/genesis.json -o ~/.bitwayd/config/genesis.json
curl -L https://snapshots.noders.services/mainnet/bitway/addrbook.json -o ~/.bitwayd/config/addrbook.json
info
Endpoint values are taken from the Noders Bitway public endpoints and install data checked on 2026-05-10.