The desk

Connect, choose an engine, and watch the search.

Connect

Open /mine and connect through the wallet picker. Switch to Robinhood Chain when prompted. Starting a round asks for a message signature; this step is not a token approval. If you decline, the search does not start.

Choose an engine

Select GPU for WebGPU or CPU for the CPU search. If GPU mode cannot get a usable WebGPU engine, the desk may fall back to CPU and display a notice. A device name alone does not prove that WebGPU is available.

Set the power

The desk offers 40, 75, and 100 Power. Lower settings leave more time between batches. The value is a workload setting, not a measurement of GPU load. Use Stop to end the active search.

Read the session

Hashrate is the measured number of attempts per second. Candidate keys and hash previews show the current search. A local match still needs server verification.

This is the rate formatter used by the desk, shown as standalone JavaScript:

JavaScript
function rateLabel(rate) {
  if (rate >= 1000) return `${(rate / 1000).toFixed(1)} kH/s`;
  return `${Math.round(rate)} H/s`;
}

console.log(rateLabel(200000)); // 200.0 kH/s
console.log(rateLabel(850));    // 850 H/s