[ click to skip ]
#โ€”
50/50
โ€”
๐Ÿ–ผ gallery ๐Ÿ›’ market โ–ถ how to mine โ›“ on-chain docs
> proof-of-luck minting ยท robinhood chain mainnet ยท 4663

MINECAT

10,000 ASCII cats in 3D pixel that can't be bought โ€” they must be mined. Fire up your CPU, unleash your GPU, or deploy an AI agent. Find a hash below target โ†’ if you're LUCKY, claim instantly for $0.20. Unlucky? Grab a ticket for the next round.

โ€”
$0.20
โ€”
5/wallet
โ— connectingโ€ฆ reading difficulty from the contractโ€ฆ
โ€” / 10,000 mined round โ€”
SPECIMEN #0000
โ€” dna:โ€”

01 PICK YOUR WEAPON

minecat@chain:~$ tail -f rounds --live โ— REC
0H/s
0
0
0
1:6
โ–ถ MINE FOR REAL โ€” ON-CHAIN on-chain difficulty โ€” ยท lucky odds 1:6 ยท mine for real โ†’

02 HOW TO START MINING

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
  1. Open the on-chain page
  2. Click CONNECT WALLET โ€” it adds Robinhood Chain (4663) for you
  3. Pick CPU or GPU, hit START MINING
  4. 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.

Whichever route you take: a valid hash below ticketTarget is work. 1 in 6 is LUCKY โ€” claim on the spot. The rest become a ticket, a guaranteed mint from the next round. Nothing is wasted.

03 ROUND ARENA โ— reading chainโ€ฆ

ROUND #โ€”
seed โ€”
โ€”submitted work in the last ~10 min
โ€”unique addresses, all time
โ€”valid work submitted on-chain
โ€”instant claims vs tickets
โ› JUST MINED live from on-chain Transfer events ยท every row verifiable

reading the chainโ€ฆ

๐Ÿ† HOLDERS reading the chainโ€ฆ

reading the chainโ€ฆ

There is no hashrate leaderboard here on purpose: the contract does not store miner hashrates, so nobody can show you a real one. This board counts actual mints, which anyone can re-check on the explorer.

50 slots per round, contested by every miner out there. LUCKY = grab a slot on the spot. Slots gone? Your solution becomes a ticket for the next round.

04 MY VAULT

โ€” / 10,000 mined

// empty. the cats won't mine themselves. โ–ถ start mining

05 HOW IT WORKS

  1. PICK A RIG

    CPU (chill), GPU (brutal), or AI AGENT (full auto). All three grind real keccak256(seed, wallet, nonce) on your device.

  2. FIND THE GOLDEN HASH

    A hash below ticketTarget = valid solution. More hashrate = more finds โ€” but fate stays fate.

  3. THE GACHA MOMENT

    Hash below luckyTarget (1 in 6 solutions) = LUCKY, claim instantly for $0.20. Anything else is a BUST โ†’ guaranteed ticket for the next round.

  4. NEW ROUND EVERY 60s

    50 lucky slots per round for everyone. Max 5 per wallet. When 10,000 are gone, they're gone forever.

โ›“ ON-CHAIN

The MINECAT.sol contract is ready to deploy on Robinhood Chain Mainnet:

chainId : 4663
rpc     : rpc.mainnet.chain.robinhood.com
explorer: robinhoodchain.blockscout.com
deployer: 0x25โ€ฆ (your wallet signs, never shared)
flow    : openRound() โ†’ submitWork(nonce) โ†’ claim()

Every number on this page is read straight from the contract on Robinhood Chain โ€” supply, round, slots, difficulty and price. Mining and minting happen on the on-chain page with your own wallet.

๐Ÿค– FOR AI AGENTS

External agents can mine through this page's API:

MINECAT.job()        // current round seed + targets
MINECAT.start('gpu') // or 'cpu'
MINECAT.claim()      // claim lucky win / ticket
MINECAT.state()      // slots, supply, wallet

Full protocol: agent/AGENT.md