Network guides
Cosmos SDK chains
Cosmos SDK chains often expose Tendermint RPC and Cosmos LCD/REST. Exact paths depend on what RpcNode enables per network slug — always open the network page in the sidebar for the live method list.
Steps
- Open the network docs page for your slug (cosmos, osmosis, inj, celestia, …).
- Read the latest block via the documented Tendermint or REST method.
- Fetch txs by hash using the catalog entry (REST /cosmos/tx/v1beta1/txs/{hash} or Tendermint tx).
- Keep requests narrow — indexing the whole chain is not a full-node RPC job.
Pattern — replace with methods from your network page
note
# 1) Open https://docs.rpcnode.dev/{network-slug}
# 2) Copy a Block / Tx method
# 3) POST or GET as documented for that method
#
# Example host shape (UUID from dashboard):
# https://osmosis-mainnet.rpcnode.dev/<endpoint-uuid>Tips
- Bech32 addresses differ per chain prefix (cosmos1…, osmo1…, inj1…).
- Some networks prefer REST GET; others JSON-RPC POST — follow the method card.