Skip to main content

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

ServiceURLPurpose
Tendermint RPChttps://bitway-rpc.noders.servicesNode status, blocks, transactions, consensus queries
Cosmos REST APIhttps://bitway-api.noders.servicesAccount, staking, governance, and module queries
gRPCbitway-grpc.noders.services:443High-performance protobuf queries

Network Information

ComponentValue
NetworkBitway Mainnet
Chain IDbitway-1
Daemonbitwayd
Current Node Versionv2.0.1
Native Denomuside

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.