Network guides
More networks (XRPL, Starknet, TON, …)
Beyond EVM, Solana, Bitcoin, and TRON, RpcNode docs include many protocol catalogs. The workflow is the same: create an endpoint → open the network page → copy a Block/Tx method → paste into curl/fetch.
Steps
- Find your network in the docs sidebar (or search).
- Open the network overview — methods are grouped; look for block / ledger / transaction names.
- Copy the curl example from the method page (tabs include JavaScript).
- Replace the sample UUID with your dashboard endpoint UUID.
Catalog map
families
XRPL → ledger, tx
Starknet → starknet_getBlockWithTxHashes, starknet_getTransactionByHash
Substrate → chain_getBlock / chain_getBlockHash (dot)
Stacks → REST /v2/... block & tx routes (stx)
Stellar → Horizon ledgers & transactions (stellar)
TON → getBlock*, getTransaction* style methods (ton)
Flow → AccessAPI GetBlock* (flow)
Fuel → block, transaction (fuel)
Aleo → getblock, gettransaction (aleo)
Open /{slug} in docs for the authoritative list and credits.Tips
- Do not assume eth_* works outside EVM families.
- If a method returns “method not found”, check the network page — it may be unsupported on full node or not enabled yet.
- Cross-link Errors → family pages when debugging.
Suggested first calls
XRPL: ledger (current validated ledger).
Starknet: starknet_blockNumber or starknet_getBlockWithTxHashes.
Polkadot/Substrate: chain_getHeader / chain_getBlockHash.
TON: start with the lightest getBlock* method shown for ton.
If unsure — eth_blockNumber equivalent on that page’s “status/tip” method.