Use this page when you need concrete node calls for exchange, custody, wallet, or indexer integrations. c8ntinuum exposes Ethereum-compatible JSON-RPC for EVM workflows and CometBFT, REST/LCD, and gRPC surfaces for node health and Cosmos SDK data.

Endpoint surfaces

For all public endpoint options and rate limits, see RPC Providers.

EVM JSON-RPC with curl

Query the current block height:
Fetch a block by height. Use a hex quantity such as 0x10d4f; set the second parameter to true when you need full transaction objects:
Fetch transaction details and its execution result:
Query ERC-20 Transfer logs for a bounded range: The documented public EVM profile caps eth_getLogs at 10000 blocks and 10000 returned logs per request.
Broadcast a signed transaction:

JavaScript

Java

Go

Rust

CometBFT RPC

Use CometBFT RPC for node status, consensus block metadata, and CometBFT transaction queries.

REST and account queries

Use REST/LCD when you need Cosmos SDK account state or Cosmos transaction data.

Operational notes

  • Treat public endpoint limits as provider policy, not protocol limits.
  • Keep long historical jobs bounded by block range and retryable by cursor. eth_getLogs requests should stay within the 10000 block and 10000 log caps.
  • Credit deposits from receipts and logs, not from pending transaction data.
  • Use eth_sendRawTransaction for offline-signed EVM transactions.
  • Run archive or indexer infrastructure when you need complete historical state from genesis.