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.