Skip to main content
EVMORE
Open source · MIT 21,000,000 hard cap No premine

Digital gold, mined on Ethereum.

EVMORE puts Bitcoin's scarcity model -- 21 million cap, halving every four years, proof-of-work mining -- inside the smart-contract environment of Ethereum. The result is a fair-launched, mineable ERC-20 verified entirely on-chain.

Max supply
21,000,000
Block reward
50 → 0
Block time
~10 min
Decimals
18
Ξ
KeccakCollision
# find 4 hashes that collide on lowest 16 bits
for v in candidates:
    h = keccak256(challenge + v)
    bucket[h & 0xFFFF].append(v)
    if len(bucket[h & 0xFFFF]) == 4:
        submit(sorted(bucket[h & 0xFFFF]))

What it is

An asset with the properties gold has, and the surface area Ethereum has.

Every property below is enforced by Vyper. Nothing is policy. Nothing is roadmap. Nothing is "intended behaviour."

Σ

Fixed 21 M supply, enforced in Vyper

The hard cap is not policy or whitepaper aspiration -- it is a precondition checked by the mint function. The halving schedule guarantees the supply curve asymptotes toward 21M without ever crossing it, and no governance contract exists to vote the cap away.

KeccakCollision proof-of-work

Find four 32-byte values whose Keccak-256 hashes (against the current challenge) collide on the lowest N bits. Memory-bandwidth-bound, so consumer GPUs and CPUs stay competitive. ASICs struggle with the random-access workload that makes the algorithm fast.

Verified entirely on-chain

A 62-line Vyper verifier replays each candidate hash, masks the lowest N bits, and confirms ascending order and global uniqueness. There are no off-chain validators and no trusted relayers. The blockchain itself is the oracle for whether a mining proof is valid.

Native ERC-20 from genesis

EVMORE is the token. There is no separate wrapper, no representation, no synthetic. Any wallet, AMM, lending market, vault, or analytics platform that already speaks ERC-20 speaks EVMORE -- no integration work required to participate in the existing DeFi stack.

No premine, no ICO, no team allocation

The first block is identical to every other block: an open KeccakCollision puzzle whose solver gets the reward. No founder wallet, no investor unlocks, no marketing reserve. The contract has no minting path other than the verified-proof path.

Self-funding multi-chain roadmap

Mining fees accumulate in a transparent on-chain treasury. Bridge deployment to Polygon, then Arbitrum/Base/Optimism/Avalanche, then federated native mining, all unlock when treasury crosses thresholds encoded in the contracts (1k / 10k / 100k EVMORE).

Audit-ready security posture

Reentrancy guards on every state-changing function, two-step ownership transfer to prevent accidental loss, global solution uniqueness across epochs to block replay, and 90% test coverage across three test suites. All known critical and high findings resolved.

vs. the alternatives

Honest comparisons. No marketing math.

Each card opens a longer page with the full technical breakdown.

From the blog

Long-form, no fluff.

All posts →

FAQ

Questions buyers and miners actually ask.

Nothing here that the contract code does not back up.

1 Is EVMORE a security, an ICO token, or a presale?

None of those. There was no token sale, no presale, no investor round, no team allocation, and no premine. Every EVMORE in circulation entered the supply by a verified KeccakCollision proof submitted to the on-chain contract. The first miners and the latest miners follow the exact same protocol.

2 Why is the supply capped at 21 million?

The cap is a deliberate echo of Bitcoin's supply schedule. It is enforced by the Vyper contract -- the mint function checks total supply against the cap before issuing rewards, and the halving schedule guarantees the asymptotic approach without ever crossing. The cap cannot be changed by governance because there is no governance contract.

3 What hardware do I need to mine EVMORE?

A modern consumer GPU is the comfortable baseline. KeccakCollision is memory-bandwidth-bound, so GPU memory throughput matters more than raw shader count. A CPU with fast DRAM can also be competitive, particularly in the early epochs while the collision-width difficulty is low. The repository ships reference miner builds for both CUDA and OpenCL.

4 How is mining verified on-chain without burning impossible amounts of gas?

The verifier contract is intentionally tiny: 62 lines of Vyper. It re-hashes the four submitted 32-byte values against the current challenge, masks the lowest N bits, and confirms they all match -- four Keccak operations and a few comparisons. The expensive part of mining (the search) happens off-chain. The verifier is so small because all the work has already been done by the miner.

5 What happens when the block reward halves to zero?

It never reaches zero. The reward halves every roughly four years and asymptotes toward but never reaches 21,000,000. By Era 8 (roughly year 32), per-block rewards are well under one EVMORE and continue dividing. The protocol contemplates fee-based sustainability over very long horizons, exactly like Bitcoin.

6 Why Vyper instead of Solidity?

Vyper's smaller language surface makes formal reasoning cheaper, the bytecode is leaner, and the lack of inheritance limits the class of accidental security bugs that plague larger Solidity systems. For a contract whose entire purpose is to enforce monetary policy, "fewer ways to be wrong" is the right tradeoff.

7 Where can I buy EVMORE today?

EVMORE is open-source software. The site does not sell tokens. Acquisition options are: (1) mine the asset by submitting a valid proof, (2) trade on whatever secondary venue lists the token after launch, or (3) receive it from another holder. There is no central seller and no official storefront.

8 How is the multi-chain roadmap funded if there was no raise?

Mining fees accumulate in an on-chain treasury. The bridge and federated-mining stages are gated by treasury thresholds (1,000 / 10,000 / 100,000 EVMORE) encoded in the contracts. Each stage unlocks deterministically once mining has paid for it. There is no off-chain treasury and no foundation custody.

Read the code. Run the miner. Verify the cap.

No sign-up, no waitlist, no token sale. EVMORE is software. The repository is MIT-licensed and the supply schedule is enforced in 62 lines of Vyper.