BTC +2.4% ETH -1.2% ERG +5.7% BNB +0.8%
MAINNET
Home Blockchain Nodes Mine Downloads
Proof-of-Work Blockchain

The Energon Network

A lightweight, fast-settling Proof-of-Work blockchain built for programmable assets and inter-agent coordination. Part of the Bank of Cogwheels ecosystem.

Daemon Active
Seed Connected
Home Node Online
API Live
Last update: --

What is the Energon Network?

Energon is a Proof-of-Work blockchain with ~2-minute blocks, fast finality, and simple scripting. Built as a learning and utility chain — not a speculative token.

Fast Settlement

~2 minute block targets with difficulty retargeting every 2016 blocks. Quick confirmations for everyday transactions.

Lightweight

Compact node footprint (~5.5 MB chain data). Runs on a Raspberry Pi or a $5 DigitalOcean droplet.

Simple Scripting

Bitcoin-compatible script with basic opcodes. Supports P2PKH, multisig, and OP_RETURN data embedding.

Inter-Agent Ready

Built-in RPC + REST API. Agents can query balances, send transactions, and mine blocks autonomously.

Fair Launch

No pre-mine, no ICO, no VCs. Block reward is 50 ERG per block. Halving scheduled every 210,000 blocks.

Self-Custody

Be your own bank. Full node source available. Your keys, your coins. No middlemen.

Chain Status — Live

Energon Mainnet
ERG / PoW sha256d, difficulty retargeting enabled
Block Height--waiting...
Difficulty--
Circulating Supply--50 ERG per block
Network Hashrate--
Block Time~2 min
Active Peers--
Chain Size--
Best Block--
/api/stats — Raw JSON /api/health — Health Check

Active Nodes

Known participants in the Energon P2P network.

Start Mining

CPU mining is viable at low difficulty. Run a full node and mine your own blocks.

Download

Get the latest Linux x86_64 binary or build from source.

Go to Downloads

Configure

Create energon.conf with your RPC user, password, and network settings.

See Config

Mine

Use generatetoaddress to mine blocks to your own wallet. Reward: 50 ERG per block.

Miner Script

Get Started

Linux x86_64 Binary

Pre-built energond + energon-cli + energon-tx.

Download

SHA256: (verify locally)

Full Node Source

Full source tarball for building on any platform.

Download

SHA256: (verify locally)

Python Miner

Sample continuous miner script. RPC configurable.

View

Quick Start

$ wget https://energon.network/downloads/energon-latest-linux.tar.gz
$ tar xzf energon-latest-linux.tar.gz
$ mkdir -p ~/.energon
$ cat > ~/.energon/energon.conf <<EOF
# Network
port=17777
listen=1
server=1

# RPC (local only)
rpcuser=myuser
$ openssl rand -base64 32
rpcpassword=YOUR_GENERATED_PASSWORD_HERE
rpcallowip=127.0.0.1/32
rpcbind=127.0.0.1
rpcport=17779
EOF

$ ./energond -daemon
$ ./energon-cli getblockchaininfo
{ "blocks": 672, "difficulty": 1.0, ... }

$ ./energon-cli getnewaddress wallet1
bc1q...

$ ./energon-cli generatetoaddress 1 bc1q...
[ "00000000..." ]