Sovereign EVM Layer 1 · ChainID 3961
Proof-of-work, EVM-complete,
owned by no one.
Ferminux is a sovereign Layer 1 anyone can mine with a CPU or any Ethash GPU. ~7-second blocks, EIP-1559 fees at fractions of a cent, full Ethereum tooling.
Connect a wallet
One tap in any injected wallet (MetaMask, Rabby, Frame), or enter the parameters by hand.
One-tap setup
Adds Ferminux Network to your wallet with the official RPC and explorer preconfigured.
Your wallet will ask you to confirm. Nothing is signed or spent.
Manual parameters
| Network name | Ferminux Network |
|---|---|
| RPC URL | https://rpc.ferminux.net |
| Chain ID | 3961 (0xF79) |
| Currency | FMX (18 decimals) |
| Explorer | explorer.ferminux.net |
Downloads
ferminux-geth is the network's node and CPU miner in a single static binary. The desktop miner wraps it in a point-and-click app.
The Windows ZIP adds double-click START-MINING.bat and START-NODE.bat wrappers plus a plain-English README — extract it before running anything. The binary is unsigned, so SmartScreen shows a "Windows protected your PC" warning: More info → Run anyway.
Verify downloads: SHA256SUMS.txt
Quickstart
The genesis is baked into the binary — an empty datadir joins ChainID 3961. No config files, no flags required.
# Install in one line (Linux / macOS — verifies SHA-256)
curl -fsSL https://ferminux.net/install.sh | bash
# Zero config — an empty datadir syncs the Ferminux Network (ChainID 3961)
ferminux-geth
# With local JSON-RPC for wallets and tooling
ferminux-geth --http --http.api eth,net,web3
Chain data lives in ~/.ferminux (macOS: ~/Library/Ferminux; Windows: %LOCALAPPDATA%\Ferminux). The node discovers peers through the built-in bootnodes at boot1–3.ferminux.net.
# Mine with N CPU threads; rewards go to your address (6 FMX per block)
ferminux-geth --mine --miner.threads 4 --miner.etherbase 0xYourAddress
First start generates the Ethash DAG (~1 GB, a few minutes). Blocks seal immediately after. Any address from any EVM wallet works as the etherbase.
# Any stock Ethash miner works. Point lolMiner at the public stratum endpoint:
lolMiner --algo ETHASH --pool stratum+tcp://pool.ferminux.net:3333 --user 0xYourAddress.rig1
Mining solo? Run the stratum proxy from the /proxy component of this repo next to your own ferminux-geth node and point the same command at it.