Skip to main content

Quick Start

Get from zero to your first transaction in a few minutes.

1. Add the network

Click the button below (EIP-3085). Your wallet will ask you to confirm.

Prefer manual setup? Use these values:

Network Name
RMB Chain Testnet
Chain ID
6688 (0x1a20)
Currency Symbol
RMB
RPC URL
https://rpc-testnet.rmb.cash
WebSocket
wss://wss-testnet.rmb.cash
Block Explorer
https://scan-testnet.rmb.cash

2. Get test funds

Visit the faucet to receive test RMB (for gas) and test stablecoins.

# or hit the faucet API directly
curl -s "https://faucet-testnet.rmb.cash/api/info" | jq .

3. Add test tokens (optional)

4. Send your first transaction

Using viem:

import { createWalletClient, custom, defineChain, parseEther } from 'viem';

const moTestnet = defineChain({
id: 6688,
name: 'RMB Chain Testnet',
nativeCurrency: { name: 'RMB Coin', symbol: 'RMB', decimals: 18 },
rpcUrls: { default: { http: ['https://rpc-testnet.rmb.cash'] } },
blockExplorers: { default: { name: 'Blockscout', url: 'https://scan-testnet.rmb.cash' } },
});

const [account] = await window.ethereum.request({ method: 'eth_requestAccounts' });
const wallet = createWalletClient({ account, chain: moTestnet, transport: custom(window.ethereum) });

const hash = await wallet.sendTransaction({ to: account, value: parseEther('0.001') });
console.log('tx:', `https://scan-testnet.rmb.cash/tx/${hash}`);

5. Verify on the explorer

Open the block explorer and paste your address or tx hash.

Next steps

  • Wallets — connect MetaMask / OKX / TokenPocket / Trust / Rabby.
  • DEX — swap and add liquidity.
  • SDK & Code Examples — copy-paste integration snippets.