# Robinhood Chain dedicated

> Your own Robinhood Chain node — full or archive, private RPC + WebSocket, no rate limits. Custom-quoted within 24h, deployed in about 48h.

Robinhood Chain is an Ethereum-compatible **Arbitrum Layer 2**, chain ID `4663`, using ETH for gas. A dedicated node there is a box reserved for you: full or archive, private RPC and WebSocket, no rate limits.

<Note>
**Deployed to order.** A concrete quote comes back within 24h and the node is usually live about 48 hours after that. There is no shared tier on this chain yet.
</Note>

## What you get

- **Full node or archive node.** Pick what your workload needs.
- **Private RPC + WS, no rate limits.** The endpoints are yours alone.
- **Custom region and hardware.** Sized to your load.
- **Standard EVM stack.** ethers, viem and web3.js work out of the box.
- **Direct engineer in Telegram.**

## Connecting

Endpoints are provisioned for you and delivered over Telegram.

<Tabs>
  <Tab title="ethers">
    ```js
    import { JsonRpcProvider } from 'ethers';

    const provider = new JsonRpcProvider('https://YOUR-ENDPOINT');
    const block = await provider.getBlockNumber();
    ```
  </Tab>
  <Tab title="viem">
    ```js
    import { createPublicClient, http } from 'viem';

    const client = createPublicClient({ transport: http('https://YOUR-ENDPOINT') });
    const block = await client.getBlockNumber();
    ```
  </Tab>
</Tabs>

<Tip>
**If the question is history rather than live reads,** the [Indexer](https://supanode.xyz/docs/robinhood/indexer) answers in SQL what would otherwise be thousands of RPC calls - and it is live off the shelf today.
</Tip>

## Talk to us

Reach us on Telegram for a quote: [@supanode_tgs](https://telegram.me/supanode_tgs).
