[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-81507":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":16,"subscribersCount":16,"size":16,"stars1d":16,"stars7d":16,"stars30d":16,"stars90d":16,"forks30d":16,"starsTrendScore":16,"compositeScore":17,"rankGlobal":10,"rankLanguage":10,"license":18,"archived":19,"fork":19,"defaultBranch":20,"hasWiki":21,"hasPages":19,"topics":22,"createdAt":10,"pushedAt":10,"updatedAt":23,"readmeContent":24,"aiSummary":25,"trendingCount":16,"starSnapshotCount":16,"syncStatus":26,"lastSyncTime":27,"discoverSource":28},81507,"equium","HannaPrints\u002Fequium","HannaPrints","CPU-mineable Solana token. Bitcoin-style economics — 21M cap, halvings, fair launch via Equihash PoW.","https:\u002F\u002Fequium.vercel.app",null,"TypeScript",27,28,1,6,0,4.39,"Apache License 2.0",false,"master",true,[],"2026-06-12 02:04:16","\u003Cdiv align=\"center\">\n\n\u003Cimg src=\"assets\u002Flogo.png\" alt=\"Equium\" width=\"140\" \u002F>\n\n# Equium\n\n### A CPU-mineable token on Solana\n\n**Bitcoin-style economics. Mine from any machine.**\n\n[Mine in your browser](https:\u002F\u002Fequium.xyz\u002Fmine) · [Desktop app](https:\u002F\u002Fequium.xyz\u002Fdownload) · [CLI miner](#-cli-miner) · [Docs](https:\u002F\u002Fequium.xyz\u002Fdocs) · [Follow on X](https:\u002F\u002Fx.com\u002FEquiumEQM)\n\n\u003C\u002Fdiv>\n\n---\n\n## ✦ What is EQM?\n\nEquium ($EQM) is a fair-launched token on Solana that you mine — like Bitcoin, but with a CPU and a wallet.\n\n| | |\n|---|---|\n| **Total supply** | 21,000,000 EQM (forever capped) |\n| **Mineable** | 18,900,000 EQM (90%) |\n| **Block reward** | 25 EQM, halving every ~8.6 months |\n| **Block time** | ~1 minute |\n| **PoW** | Equihash (96, 5) — runs on any CPU |\n| **Network** | Solana mainnet |\n\nNo VC allocation. No insider tokens. Every coin in circulation either came from the 10% premine (DEX liquidity + project treasury) or was mined block-by-block by someone running this code.\n\n## ✦ How does mining work?\n\nYour computer guesses random numbers (`nonce`s) until it finds one that, combined with the current network challenge, hashes to a number small enough to win the block. The first valid solution submitted to the chain in each ~1-minute round earns 25 EQM.\n\nThe puzzle is **memory-bound, not compute-bound** — that's the point. Equihash is designed so a $40,000 GPU rig isn't meaningfully faster than your CPU. CPUs win.\n\nA few things worth knowing:\n\n- **Solutions are bound to your wallet.** The puzzle includes your public key, so a copyist who tries to front-run your broadcast solution must re-solve from scratch under their own wallet. You don't get sniped.\n- **Difficulty auto-adjusts.** Every 60 blocks the network retargets so blocks keep landing roughly every minute, regardless of how many people are mining.\n- **Rewards halve over time.** Initial 25 EQM\u002Fblock → 12.5 → 6.25 → … forever. Mirrors Bitcoin's emission curve.\n- **Empty rounds are possible.** If nobody mines a given round, the reward stays in the program-owned vault permanently. Real fixed supply, no IOUs.\n\n## ✦ Three ways to mine\n\nAll three reference miners are first-class. They submit the same `mine` transactions to the same on-chain program, so the on-chain output is identical. Pick the one that fits your setup.\n\n| | What | Best for |\n|---|---|---|\n| **Browser** | [equium.xyz\u002Fmine](https:\u002F\u002Fequium.xyz\u002Fmine) | No install, no RPC setup. Casual mining and trying things out. Built-in encrypted wallet stored in your browser. |\n| **Desktop app** | [equium.xyz\u002Fdownload](https:\u002F\u002Fequium.xyz\u002Fdownload) | Native macOS \u002F Windows \u002F Linux. Encrypted local wallet (Argon2id + AES-256-GCM). Bring your own RPC. |\n| **CLI miner** | `clients\u002Fcli-miner` (see below) | Headless, server-friendly, single binary. Reads an existing Solana keypair file. |\n\nThe browser miner is the easiest to try; the desktop app is the recommended steady-state setup; the CLI is what you want on a VPS or alongside other services.\n\n## ✦ CLI miner\n\nThe reference Rust implementation. Single binary, no dependencies beyond what `cargo` produces.\n\n```bash\ngit clone https:\u002F\u002Fgithub.com\u002FHannaPrints\u002Fequium.git\ncd equium\ncargo build -p equium-cli-miner --release\n\n.\u002Ftarget\u002Frelease\u002Fequium-miner \\\n  --rpc-url https:\u002F\u002Fmainnet.helius-rpc.com\u002F?api-key=YOUR_KEY \\\n  --keypair ~\u002F.config\u002Fsolana\u002Fid.json\n```\n\nThe CLI uses an existing Solana keypair file. Generate one with `solana-keygen new` or export from any wallet. It needs a small amount of SOL for transaction fees (under 0.001 SOL per block); mined EQM lands in the wallet's associated token account automatically.\n\nPass `--max-blocks N` to stop after N successful mines, or omit it to run indefinitely. Run with `--help` for the full flag set.\n\n```\n$ equium-miner --rpc-url https:\u002F\u002Fmainnet.helius-rpc.com\u002F?api-key=YOUR_KEY --keypair my-wallet.json\n   round #42   reward 25 EQM   target 0x10ffff…\n     · try #1   above target        587ms   1.7 H\u002Fs\n     · try #2   above target        612ms   1.6 H\u002Fs\n     ✓ MINED!   +25 EQM     try #3   601ms   1.6 H\u002Fs\n       sig 4xZ9Ks…2pH8Yt\n```\n\nA free Helius key (see [docs\u002Frpc](https:\u002F\u002Fequium.xyz\u002Fdocs\u002Frpc)) is recommended for sustained mining; the default public Solana endpoints rate-limit aggressively under load.\n\n## ✦ Where to find us\n\n- Website: [equium.xyz](https:\u002F\u002Fequium.xyz)\n- Docs: [equium.xyz\u002Fdocs](https:\u002F\u002Fequium.xyz\u002Fdocs)\n- X: [**@EquiumEQM**](https:\u002F\u002Fx.com\u002FEquiumEQM)\n- GitHub: [HannaPrints\u002Fequium](https:\u002F\u002Fgithub.com\u002FHannaPrints\u002Fequium)\n- Solana program: [`ZKGMUfxiRCXFPnqz9zgqAnuqJy15jk7fKbR4o6FuEQM`](https:\u002F\u002Fexplorer.solana.com\u002Faddress\u002FZKGMUfxiRCXFPnqz9zgqAnuqJy15jk7fKbR4o6FuEQM) — [verified build](https:\u002F\u002Fverify.osec.io\u002Fstatus\u002FZKGMUfxiRCXFPnqz9zgqAnuqJy15jk7fKbR4o6FuEQM) via OtterSec\n- $EQM mint: [`1MhvZzEe8gQ8Rb9CrT3Dn26Gkn9QRErzLMGkkTwveqm`](https:\u002F\u002Fsolscan.io\u002Ftoken\u002F1MhvZzEe8gQ8Rb9CrT3Dn26Gkn9QRErzLMGkkTwveqm)\n\nAlways verify the mint address (not just the ticker) before buying on a DEX — anyone can create a token called EQM.\n\n## ✦ FAQ\n\n**Will I make money mining EQM?** Maybe. Maybe not. Don't quit your job. Treat this like distributed sudoku that occasionally gives you internet money.\n\n**What if my computer is slow?** It mines slower. The network adjusts difficulty so blocks come at the same rate regardless of total hashrate, but your *share* of those blocks scales with your CPU. A modest machine will still earn — just less than a workstation.\n\n**Can someone steal my work?** No. Solutions are cryptographically bound to the wallet that signs the transaction. If you broadcast a winning solution and someone copies the bytes, the chain rejects their tx because the puzzle includes their wallet address, not yours.\n\n**Why Solana?** Cheap fees. A `mine` transaction costs a fraction of a cent. The same protocol on Ethereum mainnet would cost more in gas than the block reward is worth.\n\n**Is the supply really capped at 21M?** Yes. The mint authority will be revoked before mainnet — at the SPL Token level, no more EQM can ever be created.\n\n**Where do I get help?** [Open a GitHub issue](https:\u002F\u002Fgithub.com\u002FHannaPrints\u002Fequium\u002Fissues) or hit us up on [X](https:\u002F\u002Fx.com\u002FEquiumEQM).\n\n## ✦ License\n\n[Apache-2.0](LICENSE). The protocol is open-source — fork it, audit it, run your own miner.\n\n\u003Cdiv align=\"center\">\n\n\u003Csub>Equium isn't an investment. It's a fair-launched experiment in CPU-mineable money on a fast chain.\u003C\u002Fsub>\n\n\u003C\u002Fdiv>\n","Equium是一个基于Solana的CPU可挖掘代币，采用类似比特币的经济模型，总量上限为2100万EQM，并通过Equihash PoW算法实现公平启动。其核心技术特点包括每块奖励25EQM且大约每8.6个月减半一次、约1分钟的区块时间以及内存密集型而非计算密集型的工作量证明机制，使得高端GPU设备在挖矿效率上不占优势。该项目适合任何希望通过个人电脑参与挖矿活动的用户，无论是为了兴趣还是收益，提供了网页端、桌面应用程序和命令行界面三种挖矿方式以适应不同场景需求。",2,"2026-06-11 04:05:19","CREATED_QUERY"]