MoonBite
MoonBite
Get Notified Get Wallet
Protocol Paper

No new magic. Proven parts.

MoonBite didn't invent a new consensus mechanism, and it won't pretend to. It stands on things that already work โ€” Bitcoin's double-spend solution, Litecoin's battle-tested codebase, and Monero's CPU-friendly RandomX proof-of-work โ€” and sets its own parameters on top. This page lays out those choices in plain terms.

Foundations

What MoonBite inherits

Good engineering builds on what works. MoonBite doesn't reinvent two problems that are already solved.

โ‚ฟ
From Bitcoin: the double-spend solution
Satoshi Nakamoto's 2008 paper solved the double-spend problem for digital cash with no trusted third party. The insight: a chain of proof-of-work blocks, where the longest valid chain is the true history. To rewrite the past, an attacker has to outpace the honest network in raw computational work โ€” a cost that climbs with the network's total hash rate. MoonBite takes this model whole. The UTXO transaction model, the block structure, and the security argument all trace straight back to Bitcoin's design.
ล
Proof-of-work: RandomX
MoonBite replaces Litecoin's scrypt with RandomX (ADR-001) โ€” the proof-of-work that has secured Monero since 2019. RandomX generates random programs and executes them against a large in-memory dataset, so the optimal mining hardware is a general-purpose CPU. Building an ASIC for it means building a CPU โ€” which defeats the point. That keeps mining within reach of ordinary consumer machines instead of specialized farms.
Parameters

Where MoonBite makes its own calls

These are the specific decisions that set MoonBite apart from its parent chains.

โฑ๏ธ

2-minute block target

A new block is targeted every 120 seconds โ€” five times faster than Bitcoin โ€” so you wait less for a first confirmation. Difficulty retargets every 60 blocks (about two hours), moving at most 4x per step, to hold that target as hash rate rises and falls.

๐ŸŽ

10 MBITE genesis reward

The launch block subsidy is 10 MBITE, paid entirely to the miner who solves the block. No founder reward, no pre-allocated treasury, no developer cut. Every coin issued is miner pay.

๐Ÿ“‰

Halving every 1,650,000 blocks

Every 1,650,000 blocks (~6.27 years at the 2-minute target), the subsidy is cut in half. Same halving mechanism as Bitcoin, on a block-count schedule matched to MoonBite's block time.

๐Ÿงฎ

Cap: just under 33,000,000 MBITE

Total supply is bounded. Each halving cuts the rate of new issuance in half, and the sum of every halving converges to a finite limit just under 33 million MBITE. No coins can be created outside this schedule.

โš–๏ธ

No premine โ€” fair launch

Not one MBITE existed before public mining began. The founders hold no special allocation. Every coin was earned through open, competitive proof-of-work. Any early mining by the team was disclosed in the open under ADR-006.

๐Ÿ“ฌ

Bech32 address format

MoonBite uses bech32-encoded addresses for all standard outputs. Mainnet addresses start with moon1; testnet addresses start with tmoon1. A built-in checksum catches most copy-paste slips before a transaction ever goes out.

Parameter table

At a glance

๐Ÿ”ง
Consensus algorithm
Proof-of-work ยท RandomX (CPU-optimized)
โฑ๏ธ
Target block time
120 seconds (2 minutes)
๐ŸŽ
Initial block reward
10 MBITE per block โ€” 100% to miner
๐Ÿ“‰
Halving interval
Every 1,650,000 blocks (~6.27 years)
๐Ÿงฎ
Maximum supply
~33,000,000 MBITE (asymptotic)
โš–๏ธ
Premine
None โ€” fair launch from block 0
๐Ÿ“ฌ
Mainnet address prefix
moon1... (bech32)
๐Ÿงช
Testnet address prefix
tmoon1... (bech32)
๐ŸŒฟ
Lineage
Litecoin Core fork ยท Bitcoin-lineage consensus rules
๐Ÿ”“
License
Open source โ€” see repository for exact license terms
Design rationale

Why we chose what we chose

๐Ÿค

Why build on Litecoin's codebase?

Litecoin is one of the oldest continuously running blockchain codebases in the world. Its consensus rules are battle-tested, and its security model is well understood after more than a decade of adversarial pressure. Starting from a proven base means fewer chances for fresh implementation bugs. MoonBite layers its own proof-of-work (RandomX), parameters, and address format on top instead of rewriting everything from scratch.

๐Ÿ›ก๏ธ

Why RandomX over SHA-256 or scrypt?

SHA-256 mining is run almost entirely by ASICs from a handful of companies, and mature scrypt ASICs dominate Litecoin. RandomX goes further than either: it is designed so a general-purpose CPU is the best hardware, permanently. GPUs gain little and no viable ASIC exists โ€” Monero has proven the design under real adversarial pressure since 2019. That keeps the mining base spread across ordinary people's computers instead of consolidating into farms.

๐Ÿ“‰

Why a lower supply cap?

MoonBite's cap of roughly 33 million โ€” not Bitcoin's 21 million โ€” falls out of the 10-MBITE genesis reward and the 1,650,000-block halving schedule. It wasn't picked arbitrarily; it's the direct result of designing the emission curve around a specific block time and halving period. The math is open and checkable in the source code.

๐ŸŒฑ

Why no premine?

A premine โ€” founders minting coins before the public can โ€” is the most common source of hidden conflicts of interest in crypto. Cutting it entirely means every MBITE was earned through publicly verifiable work. It also means the founders can't quietly dump a big stash on a future market. The fair-launch design is written up in ADR-006.

Source of truth

The code is the spec

There's no separate academic PDF here. The running software is the specification. Every parameter on this page is enforced in the node code, in plain sight for anyone who wants to audit it.

๐Ÿ’ป
Source code
The full node source is open and auditable. Every consensus rule โ€” block reward, halving schedule, difficulty algorithm, address encoding โ€” lives in the code. Nothing closed-source.
Source on GitHub โ†’
๐Ÿ“
Architecture decision records
Key design decisions โ€” including the fair-launch ADR-006 โ€” are written up as Architecture Decision Records in the repo. They show the reasoning, not just the conclusion.
View ADRs on GitHub โ†’
๐Ÿ”Ž
Verify it yourself
Run your own full node and check the chain for yourself. Every parameter on this page is enforced by every honest node on the network โ€” you don't have to trust this document.
Run a node โ†’
Further reading

Go deeper

โš™๏ธ
How it works
A plain-language walkthrough of every mechanism here: mining, blocks, keys, nodes, and the emission schedule.
How it works โ†’
๐Ÿ“Š
Tokenomics
The full MBITE emission table, supply cap breakdown, and halving schedule, laid out on the About page.
Tokenomics โ†’
๐Ÿ› ๏ธ
Developer docs
RPC reference, node setup, address formats, and integration guides for anyone building on MoonBite.
Developer docs โ†’
MoonBite is pre-mainnet, open-source software. This page describes the protocol as designed and built โ€” it is not an investment prospectus or a security offering. Coins carry no market value today. Nothing here is financial advice.