HOODSTACK

ENDPOINTS

Nodes & RPC

Dedicated HTTPS and WebSocket endpoints on Robinhood Chain mainnet and testnet.

ENDPOINTS

Endpoints that hold up under load.

The public RPC is fine for a demo and rate-limited everywhere else. HOODSTACK gives you dedicated HTTPS and WebSocket endpoints on mainnet and testnet, with archive access when you need history — no nodes to babysit, no 3am pages.

The problem

The public RPC is rate-limited and not built for production traffic. Running your own node means ops, upgrades, and 3am pages.

How HOODSTACK helps

Point your app at managed endpoints with archive when you need history. Same EVM tooling — only the URL changes.

Snippet

client.ts
import { createPublicClient, http, defineChain } from "viem";

const robinhood = defineChain({
  id: 4663,
  name: "Robinhood Chain",
  nativeCurrency: { name: "Ether", symbol: "ETH", decimals: 18 },
  rpcUrls: {
    default: { http: ["https://rpc.mainnet.chain.robinhood.com"] },
  },
  blockExplorers: {
    default: { name: "Blockscout", url: "https://robinhoodchain.blockscout.com" },
  },
});

const client = createPublicClient({
  chain: robinhood,
  transport: http(),
});

console.log(await client.getBlockNumber());
console.log(await client.getChainId()); // 4663

Limits

Phase 1 is the marketing shell. Quotas and dedicated capacity ship with API keys. // TODO phase 2

RPC reference →

coming soon