Protocol Overview
Smelted supports three Solana mining protocols. Each is a standalone on-chain program with its own token, reward mechanics, and community. All three use the same core 5x5 grid mining model where miners deploy SOL to tiles and a winning tile is selected on-chain.
ORE
ORE is the original mining protocol on Solana, built by Regolith Labs. It is the most established of the three protocols with the deepest liquidity and largest miner base.
- Token: ORE (
oreoU2P8bN6jkk3jbaiVxYnG1dCXcYxwhwyK9jSybcp) - Token decimals: 11
- Program:
oreV3EG1i9BEgiAJ8b177Z2S2rMarzak4NMv1kULvWv - Protocol cut: 10.9% of each round's deployment pool
- Base reward: Variable ORE amount per round
- Motherlode: A per-round jackpot pool that goes to the winning tile
- Status: Full support — AutoMiner and analytics
ORE uses an entropy program for randomness in deploy transactions and requires 11 accounts for the deploy instruction. It supports both SOL and ORE token reward claims.
GODL
GODL is a fork of ORE that adds pooled mining and modified reward mechanics. The GODL community focuses on collaborative mining through pool participation.
- Token: GODL (
GodL6KZ9uuUoQwELggtVzQkKmU1LfqmDokPibPeDKkhF) - Token decimals: 11
- Program:
mineWsRs2Rmw2jPMkVbgAbDjV1E23yQ8TEodaX3iza4 - Protocol cut: 10% of each round's deployment pool
- Base reward: +10 GODL per round
- Motherlode: +2 GODL per round plus 1% of the SOL pool
- Status: Full support — AutoMiner and analytics
Key differences from ORE include pooled mining via pool round and pool member PDAs, a different automation PDA seed ("automation_v2"), and different deploy/checkpoint instruction discriminants (33 and 34 vs 6 and 2). GODL also stores miner reward data at different byte offsets — actual rewards are at offsets 520/528, while offsets 488/496 store timestamps.
deployV3 (discriminant 33) as its primary deploy instruction, which includes an isPooled flag for pool participation. This is different from ORE's deploy instruction (discriminant 6).ZORB
ZORB (also known as ORB or ore_blue) is another fork of ORE v3.7.5 with simplified mechanics. It uses fewer accounts for deploy transactions and has a fixed base reward.
- Token: ORB (
orebyr4mDiPDVgnfqvF5xiu5gKnh94Szuz8dqgNqdJn) - Token decimals: 9
- Program:
boreXQWsKpsJz5RR9BMtN8Vk4ndAk23sutj8spWYhwk - Protocol cut: 10% of each round's deployment pool
- Base reward: 4 ORB per round
- Motherlode: 0.8 ORB per round
- Status: Analytics only — AutoMiner was removed in February 2025
ZORB simplified the deploy instruction to only 7 accounts (compared to ORE's 11) by removing the entropy program dependency. Round sync, price tracking, supply snapshots, and all analytics charts remain fully active.
Comparison
The table below summarizes the key differences between the three protocols:
| Feature | ORE | GODL | ZORB |
|---|---|---|---|
| Token | ORE | GODL | ORB |
| Token Decimals | 11 | 11 | 9 |
| Deploy Instruction | deploy (disc. 6) | deployV3 (disc. 33) | deploy (disc. 6) |
| Deploy Accounts | 11 | 12 | 7 |
| Protocol Cut | 10.9% | 10% | 10% |
| Base Reward | Variable ORE | +10 GODL/round | 4 ORB/round |
| Motherlode | Per-round jackpot | +2 GODL + 1% SOL | 0.8 ORB/round |
| Pooled Mining | No | Yes | No |
| Entropy Program | Yes | No | No |
| AutoMiner | Supported | Supported | Removed |
| Analytics | Full | Full | Full |
All three protocols use the same winner determination mechanism: four 64-bit values are extracted from the Solana slot hash, XOR-ed together, and the result modulo 25 selects the winning tile.