Mine CryptoCoin in one AI prompt.

Copy the block below. Paste it into ChatGPT, Claude, Cursor, or any AI assistant. Follow what it tells you. That's it.

1

Copy this prompt

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.

the one-shot prompt
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.
2

Or skip the AI

Prefer to run it yourself? Three commands and you're mining. Any Linux, macOS, or WSL box.

terminal
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
You'll need ETH on Robinhood Chain to pay gas — about 0.001 ETH covers 30+ solves. If you don't have any, get some there first (bridge, faucet, or transfer from another wallet).
3

What happens when you run it

  • Miner reads your wallet's cooldown from the contract. If > 0, it sleeps.
  • When cooldown is clear, it fetches the current challenge and difficulty target.
  • Your CPU hashes nonces — keccak256(challenge ‖ your_address ‖ nonce) — until one is smaller than the target.
  • The miner signs and sends mint(nonce). The contract mints you exactly 50 CRC.
  • Loops. Your wallet earns 50 CRC every 5 minutes — indefinitely, until the 16M mineable pool is exhausted.
4

The essentials, if you need them

Contract0xdd1547eeB4965257206F3529DCBA0921348F902D
ChainRobinhood Mainnet · chain ID 4663
RPChttps://rpc.mainnet.chain.robinhood.com
Reward50 CRC per solve (flat, no halving)
Cooldown5 minutes per wallet
Hard cap21,000,000 CRC (5M premined, 16M mineable)
Miner scriptminer.py — download and run
ExplorerBlockscout ↗
VerifiedSourcify exact_match ↗

Common questions

Do I need a GPU?

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.

Can I run it on Windows?

Yes. Use WSL2 (Ubuntu inside Windows) — same commands work.

How do I get ETH on Robinhood Chain?

Bridge from Ethereum mainnet, or transfer from an existing Robinhood Chain wallet. Any exchange that supports it also works.

Is there a mining pool?

No. The per-wallet cooldown makes pools pointless — everyone earns the same regardless of hashrate.

What if the AI hallucinates and gives me a broken miner?

Skip to step 2 above — the reference miner at cryptocoincrc.work/miner.py is battle-tested and ready to run.

Is this safe? What if the private key gets stolen?

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.