So it's Proof-of-Work without the work, everyone gets paid every time and i still get a good bill in the mail? I would like to know your process of creation. You didn't make a new algorithm, you didn't make a miner, is there a blockchain? From what i see you made a server that reads some data and pays everyone regardless of what the data says?
It's all open source, every line is at github. You can verify everything I'm about to say yourself.
Is there a blockchain? Yes. The P2P network runs over HTTP on port 39310 with peer discovery, chain sync, and fork resolution. The full block structure, merkle proofs, and account state are there in the repo.
"A server that pays everyone regardless of data" The energy measurement isn't a server reading some sensor. Every miner runs cryptographic probe challenges issued by multiple peer coordinators(every peer is a coordinator).
These aren't just "trust me bro" readings. Failed probes crater your trust score (which scales your mining contribution between 20–100%). The peer probe system, multi-coordinator cross-attestation, and trust score math are all in code.
No new algorithm? Proof-of-Energy as implemented here replaces SHA-256 lottery with energy estimation. The probes verify the hardware is real and running. The chain then counts verified kilowatt-hours, not hashes. That's a fundamentally different consensus mechanism.
"Proof-of-Work without the work" The work is real electrical load. The miner actually draws power from the wall. The probes verify the hardware exists and is computing. The protocol counts kWh, not hash attempts. You can call it PoW without SHA-256, but the energy cost is the same either way and every miner gets paid proportionally every block instead of hoping to win a lottery.
The repo is MIT licensed. Clone it, read the chain code, watch the peer network traffic, audit the probe system. If there's something specific you think is fake, point to the file and line.