Quick start

From download to your first detected token in about two minutes.

1. Install the extension

The Chrome Web Store listing is in review. Until it is live, install the early access build:

  1. Download the build from the homepage and unzip it.
  2. Open chrome://extensions and switch on Developer mode (top right).
  3. Click Load unpacked and select the unzipped folder.
  4. Pin RobinCash to your toolbar from the puzzle-piece menu.
Early builds do not auto-update. When a new version ships, download the new zip and reload it the same way. Store installs will update automatically once the listing is approved.

2. Create or import your vault

Open RobinCash from the toolbar. You can generate a fresh recovery phrase or import an existing 12-word mnemonic. Either way, the phrase is encrypted with your password using AES-GCM and stored only on your device. One phrase derives your accounts on every supported chain: Robinhood Chain, the major EVM networks, and Solana.

Write the phrase down. There is no RobinCash server, which means there is no account recovery. Anyone with the phrase controls the funds; anyone without it, including us, cannot help you restore them.

3. Browse and trade

That's the setup. Now visit X, DexScreener, GMGN, or any token page. When RobinCash spots a contract address it badges it inline; click the badge (or open the side panel) and the terminal loads with the token's price, liquidity, safety checks, and your wallets with buy presets.

How routing works behind the scenes

Quotes and routing go through RobinCash's hosted routing service, so provider API keys (Uniswap, 0x, Jupiter, Alchemy) are never embedded in the extension bundle. The service only relays quote and price requests; it never sees your keys and cannot sign anything. Downloaded builds are pre-configured, so there is nothing to set up.

Developers building from source can point the extension at their own instance instead:

cd apps/router-proxy
cp .env.example .env   # add your API keys
npm install
npm run dev            # listens on http://127.0.0.1:8787

Then set VITE_ROUTER_PROXY_URLwhen building the extension. Your keys stay in the proxy's environment, on your machine.