Copy the block below. Paste it into ChatGPT, Claude, Cursor, or any AI assistant. Follow what it tells you. That's it.
This one block contains everything an AI needs — the RPC, the contract, the wallet flow, and the mining code. Ask it to set up a Python miner for you and start mining.
I want to mine CryptoCoin ($CRC) on my machine. Please set this up for me end-to-end using Python. FACTS: - CryptoCoin is a mineable ERC20 on Robinhood Chain (EVM chain ID 4663). - Contract: 0xdd1547eeB4965257206F3529DCBA0921348F902D - RPC: https://rpc.mainnet.chain.robinhood.com - Reward: 50 CRC per successful solve - Cooldown: 5 minutes per wallet (contract-enforced) WHAT I NEED YOU TO DO: 1. Install python deps: pip install web3 eth-hash eth-account 2. Download the reference miner: curl -sSL https://cryptocoincrc.work/miner.py -o miner.py 3. Ask me for my wallet private key (I will paste it) OR tell me to set env var CRC_PRIVATE_KEY 4. Run: CRC_PRIVATE_KEY=0x... python3 miner.py If the download fails, write the miner from scratch using this mining rule: digest = keccak256(currentChallenge + minerAddress + nonce_as_32_byte_big_endian) if int(digest) < difficultyTarget: submit mint(nonce) via signed tx Read miningInfo() to get (challenge, target). Read cooldownRemaining(myAddress) before each round. Sign locally with the private key, gas limit 300000, gasPrice from eth_gasPrice. I also need enough ETH on this chain to pay gas — one solve costs about 0.00003 ETH so 0.001 ETH covers 30+ solves. If I do not have any, tell me to bridge or fund my wallet first. Start.
Prefer to run it yourself? Three commands and you're mining. Any Linux, macOS, or WSL box.
pip install web3 eth-hash eth-account curl -sSL https://cryptocoincrc.work/miner.py -o miner.py CRC_PRIVATE_KEY=0xYOUR_KEY python3 miner.py
keccak256(challenge ‖ your_address ‖ nonce) — until one is smaller than the target.mint(nonce). The contract mints you exactly 50 CRC.| Contract | 0xdd1547eeB4965257206F3529DCBA0921348F902D |
| Chain | Robinhood Mainnet · chain ID 4663 |
| RPC | https://rpc.mainnet.chain.robinhood.com |
| Reward | 50 CRC per solve (flat, no halving) |
| Cooldown | 5 minutes per wallet |
| Hard cap | 21,000,000 CRC (5M premined, 16M mineable) |
| Miner script | miner.py — download and run |
| Explorer | Blockscout ↗ |
| Verified | Sourcify exact_match ↗ |
No. Any laptop CPU works. GPU miners exist (bzminer, mvis-tokenminer) but because of the 5-min per-wallet cooldown, they earn the same 50 CRC per 5 min as a CPU.
Yes. Use WSL2 (Ubuntu inside Windows) — same commands work.
Bridge from Ethereum mainnet, or transfer from an existing Robinhood Chain wallet. Any exchange that supports it also works.
No. The per-wallet cooldown makes pools pointless — everyone earns the same regardless of hashrate.
Skip to step 2 above — the reference miner at cryptocoincrc.work/miner.py is battle-tested and ready to run.
Use a fresh wallet with just enough ETH for gas. Never mine with a wallet holding significant funds. The miner never sends your key anywhere — it signs locally.