Three ways in. Pick one โ they all grind the same
keccak256 against the same contract. Mining itself is free:
you only pay $0.20 when you claim a cat.
1IN YOUR BROWSEReasiest ยท nothing to install
- Open the on-chain page
- Click CONNECT WALLET โ it adds Robinhood Chain (4663) for you
- Pick CPU or GPU, hit START MINING
- Found a hash? SUBMIT WORK โ then CLAIM
You need a little ETH on Robinhood Chain for gas. GPU needs
Chrome/Edge 113+ (WebGPU) โ the page detects it and greys out GPU if missing.
โ OPEN THE MINE
2FROM A TERMINALCPU all-cores or GPU ยท Windows / Linux / macOS / VPS
Download and unpack minecat-miner.zip, then:
// 1. install (once)
npm install
// 2. check your speed first โ free, no key needed
node minecat-miner.js --bench
// 3. give it a funded burner key
// Linux / macOS:
export MINECAT_PRIVATE_KEY=0xyour_key
// Windows PowerShell:
$env:MINECAT_PRIVATE_KEY="0xyour_key"
// 4. mine (it submits and claims for you)
// CPU, all cores:
node minecat-miner.js
// GPU (WebGPU):
node minecat-miner.js --mode gpu
// pick your own core count:
node minecat-miner.js --threads 8
Keep it running 24/7 with systemd, pm2, screen or Task Scheduler โ
recipes are in the README inside the zip. Your key never leaves your machine.
3AS AN AI AGENTunattended ยท it decides and claims by itself
The CLI miner is already headless, so an agent just runs it and reads
stdout. For an agent that picks its hardware, manages tickets and retires at the wallet cap:
// drop-in skill for Claude Code / any agent harness
skills/minecat-miner/SKILL.md
// or drive the site directly from a browser agent
window.MINECAT.start('cpu')
window.MINECAT.state()
window.MINECAT.claim()
The skill carries the PoW spec, the decision loop, a revert decoder
and the safety rules. Browser API reference is in agent/AGENT.md.