Public, unthrottled JSON-RPC endpoint delivering deterministic ~2s block finality for the CARGO ecosystem. Cost-eliminated infrastructure for autonomous application development.
One-click network configuration for wallets, explorers, and developer tooling.
Copy-paste ready code snippets for your preferred toolchain.
# Query latest block number curl -X POST \ --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}' \ -H "Content-Type: application/json" \ https://rpc.tradecargo.in
import { ethers } from "ethers"; // Initialize provider const provider = new ethers.JsonRpcProvider( "https://rpc.tradecargo.in" ); // Query latest block const blockNumber = await provider.getBlockNumber(); console.log("Latest block:", blockNumber);
from web3 import Web3 # Initialize provider w3 = Web3.Web3( Web3.HTTPProvider("https://rpc.tradecargo.in") ) # Query latest block block_number = w3.eth.block_number print(f"Latest block: {block_number}")
Transparent operational parameters for reliable, secure infrastructure access.
Maximum of 100 requests per second per IP address. Sustained bursts above this threshold will receive HTTP 429 responses.
Standard Web3 read/write methods (eth_*, net_*, web3_*) are enabled. Administrative APIs (admin_*, personal_*) are permanently isolated.
Clique PoA consensus delivers deterministic block finality in approximately 2 seconds. No reorgs, no probabilistic settlement.
No API keys, no registration, no whitelisting. The RPC gateway is fully public — connect and transact immediately.