CARGO RPC Gateway

Autonomous L1
High-Speed RPC Gateway

Public, unthrottled JSON-RPC endpoint delivering deterministic ~2s block finality for the CARGO ecosystem. Cost-eliminated infrastructure for autonomous application development.

About CARGO
CARGO symbol
~2s settlement | Deterministic finality | Cost-eliminated

Connect to CARGO Mainnet

One-click network configuration for wallets, explorers, and developer tooling.

Network CARGO Mainnet
Symbol CARGO
Chain ID 31339
Hex 0x7A6B
RPC URL https://rpc.tradecargo.in
Explorer https://explorer.tradecargo.in
Architecture Zero-Gas / Deterministic Execution

Connect in one line

Copy-paste ready code snippets for your preferred toolchain.

Shell
# 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
JavaScript
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);
Python
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}")

Rate Limits & Security

Transparent operational parameters for reliable, secure infrastructure access.

100 req/s

Per-IP Rate Limit

Maximum of 100 requests per second per IP address. Sustained bursts above this threshold will receive HTTP 429 responses.

Web3 Only

Public API Surface

Standard Web3 read/write methods (eth_*, net_*, web3_*) are enabled. Administrative APIs (admin_*, personal_*) are permanently isolated.

Deterministic Finality

~2s Settlement

Clique PoA consensus delivers deterministic block finality in approximately 2 seconds. No reorgs, no probabilistic settlement.

Autonomous

Permissionless Access

No API keys, no registration, no whitelisting. The RPC gateway is fully public — connect and transact immediately.