Network

The web wrapper uses Robinhood Chain, chain ID 4663.

Check the wallet network

The wallet API returns chain IDs as hexadecimal strings. The value for 4663 is 0x1237. This example reads the selected network without switching it.

JavaScript
const provider = window.ethereum;
if (!provider?.request) {
  console.log('Use the site wallet picker.');
} else {
  try {
    const chainId = await provider.request({ method: 'eth_chainId' });
    console.log(Number(chainId) === 4663
      ? 'Robinhood Chain selected.'
      : 'Switch to Robinhood Chain in the site.');
  } catch {
    console.log('Cannot read the wallet network.');
  }
}

Switch through the desk

If the site shows Switch to Robinhood, use that control and approve the network change in your wallet. If you decline, you can try again from the same control.

Network units

The network uses ETH as its native currency. The ETH balance in the wallet header is separate from the ZEC asset used by the wrapper. A ticker alone is not a contract address. Zponk token CA: SOON.

Zcash and the wrapper

The browser searches SHA-256 challenges for the wrapper. It does not validate native Zcash blocks or replace Zcash consensus. Use the chain shown by the site when checking a wallet session.