DigiByte (DGB) Explained
Every SHA-256 miner has seen DGB on a coin list and moved on. The short version: a 2014 Bitcoin fork that produces a block every 15 seconds and splits mining across five independent algorithms, each with its own difficulty. SHA-256 handles one block in five — which is why a Bitaxe wins DigiByte blocks in weeks rather than centuries, and why the block is worth about a dollar. This is the Know Your Chain profile of the chain that invented DigiShield and gave it away.
DigiByte is a proof-of-work blockchain launched in January 2014 that produces a block every 15 seconds and splits mining across five independent algorithms. SHA-256 is one of them, handling roughly one block in five on its own separately adjusted difficulty. That single design choice is why a home ASIC can realistically win DigiByte blocks — and why any Bitcoin miner can point at DGB without changing a thing.
Key takeaways
- Five algorithms, one chain. SHA-256, Scrypt, Skein, Qubit and Odocrypt each mine about 20% of blocks, each with its own difficulty.
- A SHA-256 block every 75 seconds on average, against a lane of roughly 40 PH/s — about 1/25,000th of Bitcoin’s hashrate.
- No halving. The subsidy is multiplied by 0.98884 each month, from 8,000 DGB in 2014 to about 251 DGB today, reaching zero at block 41,668,798.
- A Bitaxe averages a block every three to four weeks. The same device on Bitcoin averages roughly 3,500 years.
- DigiByte gave away its best idea. DigiShield, built in February 2014, now runs in Dogecoin, Zcash, Bitcoin Cash and twenty-odd other chains.
- The trade-off is value, not frequency. A DGB block is worth about one dollar. You win often; you win small.
Where did DigiByte come from?
DigiByte was created by Jared Tate, a programmer from Idaho Falls who had been working with Bitcoin since 2012. In autumn 2013 he set out to modify the Bitcoin protocol, and on 10 January 2014 he mined the first DigiByte block.
Into that genesis block he wrote a headline from that day’s USA Today: Target: Data stolen from up to 110M customers. The gesture mirrors Satoshi Nakamoto’s own genesis message five years and one week earlier. Nakamoto’s headline declared that centralized finance had failed; Tate’s declared that centralized data security had failed. Cybersecurity has been the project’s stated focus ever since.
There was no ICO and no venture round. A premine of 105 million DGB — 0.5% of the eventual supply — was split evenly: half given away to early adopters, half retained for development, with the transactions publicly posted. Twelve years later Tate still commits to the codebase, which makes DigiByte one of very few 2014-era chains whose founder never disappeared.
What did DigiByte invent that other chains copied?
This is the part of the story most coverage skips, and it is the strongest thing on DigiByte’s record.
Six weeks after launch, in February 2014, the chain activated DigiShield at block 67,200. The problem it solved was killing small chains at the time: multi-pools would arrive with ten times the network hashrate, mine easy blocks while difficulty was still low, then leave — stranding the remaining miners at an artificially high difficulty until the next fortnightly recalculation. Some chains froze for days.
DigiShield recalculated difficulty between every block, and did it asymmetrically: fast to fall, slow to rise. Multi-pool gaming stopped being profitable because difficulty caught up within minutes.
Dogecoin was suffering the same attack that spring. The DigiByte developers helped the Dogecoin team implement DigiShield directly, and it worked immediately. From there it spread. By 2019 the algorithm — or a derivative — was running in more than twenty-five blockchains, including Zcash, Bitcoin Cash, Bitcoin Gold, Monacoin, Aurora Coin and Ubiq. A 2019 pull request to the Litecoin repository even proposed bringing it over, citing a direct comparison: at Litecoin’s halving, 12 blocks arrived in 17 minutes, while DigiByte in a comparable window produced 200 blocks in 49.5 minutes against an expected 50 — a deviation of 1%. The argument was made in one line:
“There is no down-side to a more stable and steady block production schedule.” — ChillingSilence, Litecoin PR #608
DigiByte received no royalty and no credit in most of those codebases. The idea simply became infrastructure.
What are DigiByte’s hard forks, in order?
Five hard forks and three soft forks, all readable in the consensus parameters of DigiByte Core.
| Fork | Block | Date | What it did |
|---|---|---|---|
| DigiShield | 67,200 | Feb 2014 | Per-block difficulty retarget |
| MultiAlgo | 145,000 | Sep 2014 | One algorithm becomes five |
| MultiShield | 400,000 | Dec 2014 | DigiShield extended to all five lanes |
| DigiSpeed | 1,430,000 | Dec 2015 | Block time cut to 15 seconds |
| Odocrypt | 9,112,320 | Jul 2019 | Groestl retired, FPGA algorithm added |
| SegWit (soft) | — | Apr 2017 | First major altcoin to activate it |
| Taproot (soft) | 21,168,000 | Apr 2025 | Schnorr signatures, script trees |
| DigiDollar + AlgoLock (soft) | 23,869,440 | Jul 2026 | On-chain stablecoin, retired-algo rule |
The 2017 SegWit activation is worth pausing on: DigiByte activated it in April 2017, four months before Bitcoin. For a chain frequently dismissed as derivative, being first on the most contested upgrade of that era is a strange fact to explain away.
What makes DigiByte different from Bitcoin?
Several protocol decisions separate them, and each has consequences for anyone who mines.
| Bitcoin | DigiByte | |
|---|---|---|
| Block time | 10 minutes | 15 seconds |
| Mining algorithms | 1 (SHA-256) | 5, independent |
| Difficulty retarget | every 2,016 blocks | every block, per algorithm |
| Retarget symmetry | symmetric | asymmetric, −16% / +8% |
| Supply schedule | halving every 4 years | ×0.98884 per month |
| Max supply | 21 million | 21 billion |
| Coinbase maturity | 100 blocks (~17 h) | 100 blocks (~25 min) |
The last row is more useful than it looks. On Bitcoin a fresh coinbase is spendable after roughly seventeen hours. On DigiByte, 100 blocks pass in about twenty-five minutes — a solo miner who wins a block at breakfast can move the reward before lunch.
How does MultiAlgo actually work?
DigiByte does not rotate algorithms on a schedule, and it does not pick one at random. All five compete simultaneously, and the algorithm a block used is written into the block header itself.
Reading primitives/block.h in DigiByte Core, the constant BLOCK_VERSION_ALGO is defined as 15 << 8 — a four-bit mask over bits 8 to 11 of the version field. Each algorithm has a fixed value in that window:
| Algorithm | Version bits |
|---|---|
| Scrypt | 0x0000 |
| SHA-256d | 0x0200 |
| Groestl (retired) | 0x0400 |
| Skein | 0x0600 |
| Qubit | 0x0800 |
| Odocrypt | 0x0A00 |
When a block arrives, the node reads those four bits to decide which of the five difficulty targets applies. That is the whole mechanism, and it explains a detail that matters to modern ASIC owners: version rolling for overt AsicBoost uses bits 13 to 28, well clear of the algorithm window. Your miner can roll the version freely without ever corrupting the algorithm identifier.
Each lane targets one block every 75 seconds. Five lanes at 75 seconds each average out to one block every 15 seconds across the chain.
The security argument follows from arithmetic rather than assertion: an attacker who controls 99% of a single algorithm still commands only 20% of block production. The other four lanes keep extending the honest chain faster than the attacker can extend a competing one.
How does MultiShield really adjust difficulty?
Most descriptions stop at “it retargets every block.” The actual algorithm in pow.cpp is more interesting, and three of its properties matter to a miner.
It averages over 10 blocks per algorithm, not one. The retarget looks back NUM_ALGOS × nAveragingInterval blocks — fifty in total, ten of them belonging to your lane — and compares the elapsed time against the expected 750 seconds.
It damps the correction to a quarter. The measured timespan is not used raw. The code computes target + (actual − target) / 4, so a lane running twice as fast as expected moves difficulty by a quarter of the naive correction. This is what stops the chain oscillating when a single lucky block arrives early.
It is deliberately asymmetric. The clamps are nMaxAdjustDownV4 = 16 and nMaxAdjustUpV4 = 8: difficulty can fall by up to 16% in a step but rise by at most 8%. A lane abandoned by hashrate recovers twice as fast as a lane being flooded. That asymmetry is the original DigiShield insight, and it is why a multi-pool cannot strand the chain.
There is also a per-algo local adjustment of 4% per position: if your lane has fallen behind the others, its difficulty is nudged down for each block it is late by, and nudged up when it runs ahead. And all timing uses median-time-past rather than raw block timestamps, which closes the time-warp attack that has bitten other small chains.
The practical upshot: if a large farm parks on SHA-256, that lane’s difficulty climbs within minutes rather than over two weeks — and drops just as fast when the farm leaves. Odds calculated on today’s difficulty are a snapshot, not a forecast. The Network Radar tracks live difficulty and drift across every SHA-256 chain side by side.
Which algorithm should you use?
Your hardware decides, not your preference.
| Algorithm | Hardware | Notes |
|---|---|---|
| SHA-256 | ASIC | Identical to Bitcoin. Any BTC miner works unchanged |
| Scrypt | ASIC, some GPUs | Identical to Litecoin and Dogecoin |
| Skein | ASIC, GPU | Niche hardware market, harder to source |
| Qubit | ASIC | Smallest lane by hashrate |
| Odocrypt | FPGA | Rewrites itself every 10 days |
If you already own Bitcoin mining hardware, the decision is made for you: SHA-256, with no changes to anything.
What is Odocrypt, and why does it change itself?
Odocrypt is the only production mining algorithm that rewrites its own internals on a schedule. It activated in July 2019 at block 9,112,320, replacing Groestl.
It is built on Keccak — the SHA-3 family — chosen because it is compact and needs little memory, which suits commodity FPGAs. Its substitution and permutation boxes are regenerated from a fresh seed every ten days, at midnight UTC. The interval is written into consensus as nOdoShapechangeInterval = 10*24*60*60.
An ASIC built for one epoch is scrap metal in the next. FPGA miners simply recompile the bitstream and reprogram — seconds of work — and a two-hour window before each rollover accepts both old and new parameters, so the lane’s hashrate does not collapse at midnight while everyone reflashes.
It is named after Odo, the shapeshifter from Star Trek: Deep Space Nine.
The design has a footnote worth knowing. In 2019 and 2020 the project also pursued ProgPoW and RandomX to bring GPUs and CPUs back into DigiByte mining. The work was implemented but never shipped, and the abandoned placeholders are still visible in the source today: in the algorithm enum, ALGO_EQUIHASH and ALGO_ETHASH sit commented out between Qubit and Odocrypt. A small archaeological trace of a plan that did not happen.
How much does a DigiByte block pay?
About 251 DGB in September 2026, and less every month. DigiByte replaced Bitcoin’s four-year halving with continuous decay, written directly into consensus rather than left to a lookup table.
Reading GetBlockSubsidy in the DigiByte source, the emission runs through six distinct periods:
| Period | Blocks | Subsidy |
|---|---|---|
| I | 0 – 1,440 | 72,000 DGB |
| II | 1,440 – 5,760 | 16,000 DGB |
| III | 5,760 – 67,200 | 8,000 DGB |
| IV | 67,200 – 400,000 | 8,000, −0.5% weekly |
| V | 400,000 – 1,430,000 | 2,459, −1% monthly |
| VI | 1,430,000 → end | 1,078.5, ×0.98884 monthly |
Period VI is the one running today, and has been since December 2015. Each month the subsidy is multiplied by 98884/100000 — a decay of about 1.116%, not the round “1%” usually quoted. The code caps the schedule at block 41,668,798, where the reward falls under 1 DGB and is explicitly set to zero. At 15 seconds per block that lands near 2035, which is where the “21 billion coins in 21 years” figure comes from.
The consequence for a miner is blunt: every month you wait, a DGB block pays about 1% less. There is no cliff to trade and no halving to plan around — just a slow, permanent slide.
Can a home miner really win DGB blocks?
Yes, and the gap from Bitcoin is not marginal — it is four orders of magnitude.
The DigiByte SHA-256 lane runs at roughly 36 to 45 PH/s (measured across SoloFury’s own DigiByte full nodes in September 2026), with difficulty oscillating between about 650 million and 890 million. Bitcoin sits above 1,000 EH/s.
That gives the following expectations for a solo miner:
| Hardware | Hashrate | Avg. time per DGB block |
|---|---|---|
| NerdMiner v2 | ~50 KH/s | not realistic |
| Bitaxe Gamma | ~1.5 TH/s | 3 – 4 weeks |
| NerdQAxe++ | ~4.8 TH/s | ~8 days |
| Antminer S19 | ~95 TH/s | ~10 hours |
| Antminer S21 | ~200 TH/s | ~5 hours |
| Antminer S21 XP | ~270 TH/s | ~3.5 hours |
These are averages over a Poisson process, not schedules. A Bitaxe can find a block on its first day or go two months without one. But the expectation is measured in weeks rather than centuries, and that changes what solo mining means in practice.
We can point at our own numbers rather than a model. On SoloFury’s first day of DigiByte production, a single Antminer S21 at 200 TH/s found six blocks in 24 hours — the first being block 24,172,844 on 8 September 2026. Every coinbase is public, carries the pool signature, and paid the reward straight to the miner’s own address.
Run the numbers for your own hardware. The solo odds calculator takes your hashrate and returns block probability per day, week and month across every supported chain.
What is a DGB block actually worth?
About one US dollar. That is not a typo, and pretending otherwise would waste your time.
At roughly $0.0046 per DGB (CoinGecko, September 2026), a 251 DGB block comes to about $1.16. Five blocks a day from an S21 is under six dollars, against roughly 3.5 kW of continuous draw. At any electricity price above a couple of cents, DGB mining loses money as an energy trade.
So why do it? Because the value on offer is not the reward — it is the outcome. Bitcoin solo mining, for a home miner, is a ticket you will realistically never cash: a Bitaxe averages some 3,500 years per block, and the well-publicized wins are genuine one-in-a-million events. DigiByte returns the original experience of proof-of-work to small hardware. You point a miner at a chain, and within weeks the chain hands you a block with your own address in the coinbase.
Miners who run DGB alongside a serious BTC operation generally treat it exactly that way: a low-stakes lane where the hardware demonstrably works, the dashboard fills with real blocks instead of a permanently empty counter, and the education costs a dollar at a time.
What happened to DigiByte between 2020 and 2025?
The hardest stretch in the project’s history, and it deserves telling honestly.
In May 2020, after a 900% rally, Jared Tate announced he was stepping back. His public statement was a critique of the industry’s culture rather than of the project: he wrote that most participants cared only about “cashing out when a coin moons”, and that the space had drifted from its founding values. DGB fell around 20% on the news. Fellow developer Josiah Spackman framed it as a sabbatical; Tate clarified he was not leaving permanently and was not selling. By September 2020 he was involved again.
In 2023 he was more direct about the cost: roughly $500,000 of his own money and over 10,000 hours put into DigiByte, while working four side jobs to keep his house, and holding about $500 worth of DGB at the time. He asked the community to carry more of the load.
Development reflected the strain. The chain sat on the v7.17.3 codebase for years while other chains modernized. The ProgPoW and RandomX effort stalled. A volunteer push eventually delivered the v8 rebase, catching the codebase up through Bitcoin Core v22 and finally activating Taproot in April 2025 at block 21,168,000. Then in 2026 the v9 line rebased again, onto Bitcoin Core 26.2.
That timeline matters for one reason a miner should care about: the v8 rebase is where the Groestl bug entered.
What was the Groestl incident of June 2026?
The most instructive security story on this chain, and a good argument for keeping nodes current.
Groestl was one of the original five algorithms, retired in 2019 at the Odocrypt fork. The rule rejecting Groestl blocks existed in the v7.17.3-era software, but it was accidentally dropped during the v8 rebase in 2021 or 2022. The function that knew Groestl was retired survived — it was still used for difficulty and display — but the single line that enforced it when accepting a block was gone. Because nobody mined Groestl, its difficulty sat at the floor and the gap stayed dormant for years.
On 28 June 2026 at 16:40:05 UTC, at block 23,751,096, an actor noticed. Reportedly using AI to analyze the consensus rules, they reactivated Groestl and began mining a sixth algorithm at floor difficulty.
The result: roughly 1,356 cheap blocks worth about 351,000 DGB, block times dropping from the 15-second target to 12-13 seconds, and a network split — v8 and v9 nodes accepted the Groestl blocks while older v7.17.3 software rejected them and forked onto a slower chain. Several exchanges paused DGB deposits and withdrawals.
What did not happen matters as much. The DigiByte Core release notes for v9.26.3 state it plainly:
“No coins were stolen and no confirmed transactions were reversed.” — DigiByte Core v9.26.3 release notes
The deepest reorganization of the active chain was four blocks. Across every competing branch the network saw, none ever accumulated more total work than the honest chain.
Core v9.26.2 restored retired-algorithm enforcement as a mandatory upgrade — now called AlgoLock — and v9.26.5 buried it permanently under BIP90 alongside Taproot and DigiDollar.
For a miner the lesson is operational, not philosophical: run v9.26.5 or later. Anything older is either out of consensus or missing the fix.
What is DigiDollar?
The other half of DigiByte’s 2026, and the first genuinely new thing on this chain in years.
DigiDollar activated on mainnet on 17 July 2026 at block 23,869,440, through a BIP9 soft fork on deployment bit 23. It lets users lock DGB in Taproot time-locked vaults as collateral and mint a USD-pegged token entirely on-chain — no issuer, no custodian, and notably no liquidation engine: collateral stays locked until the vault owner redeems it. Price data comes from a roster of 35 oracle slots requiring 7 signatures, aggregated with MuSig2 so no single party can forge a feed.
Whether it finds adoption is an open question, and community projections about capturing a slice of the stablecoin market should be read as advocacy rather than analysis. What is not in question is the engineering claim: a decentralized overcollateralized stablecoin native to a UTXO chain is a first.
For miners the relevance is indirect but real. DigiDollar gives DGB an on-chain use beyond transfers, and locked collateral leaves circulating supply. If it works, the coin you mine has a demand source it did not have in 2025.
How do you start mining DGB?
If you have SHA-256 hardware, three things:
- A DigiByte address you control. Legacy addresses start with
D, native SegWit withdgb1. Any wallet where you hold the keys works. - A stratum endpoint. On a non-custodial solo pool your address is the username — there is no account to create and no payout threshold to reach.
- Your existing firmware. Bitmain stock, BraiinsOS, VNish, LuxOS, AxeOS: all speak the same protocol to a DGB pool as to a BTC pool.
The username convention matches Bitcoin: YOUR_DGB_ADDRESS.worker_name, password x. Difficulty is handled by the pool’s vardiff, and on a chain with 15-second blocks it is worth letting it settle rather than forcing a static value. If your firmware supports it, overt AsicBoost works on DGB exactly as on Bitcoin — as shown above, the version-rolling mask never touches the algorithm bits.
The same reasoning applies to the other low-difficulty SHA-256 chains: eCash works on a similar principle, with a different set of trade-offs.
Skip the manual setup. The Solo Start configurator generates a ready-to-paste stratum config for DGB in four steps — pick the coin, pick the closest region on the globe, paste your address, toggle TLS. No account, no signup.
What should you watch out for?
Three things catch people out on DigiByte specifically.
Rejected shares run higher than on Bitcoin. A new job arrives every 75 seconds on the SHA-256 lane, and work in progress when the job changes is discarded. On SoloFury’s nodes we measure about 1.5% rejects on a low-latency connection, rising to 2-4% at 370 ms round-trip. This is cosmetic: your displayed hashrate reads slightly low, but a rejected share never reduces your probability of finding a block. Connecting to a geographically close server keeps the number down.
The reward shrinks while you watch. Unlike a halving there is no date to plan for. A block paying 251 DGB today pays about 248 next month, and roughly 224 a year from now.
Difficulty moves constantly. MultiShield retargets every single block. A calculation made on this morning’s difficulty can be meaningfully wrong by evening if a farm arrived or left.
The bottom line
DigiByte is a twelve-year-old proof-of-work chain that never stopped producing blocks, gave its best invention away to a dozen larger projects, survived its founder burning out, and shipped a stablecoin protocol in 2026. Its five-algorithm design was unusual in 2014 and remains unusual now.
The practical effect for anyone holding SHA-256 hardware is simple: the chain is winnable. You will not get rich mining DGB — a block is worth about a dollar. But you will get blocks, with your own address in the coinbase, on a timescale you can actually observe. For a home miner who has watched a Bitaxe hash for two years without a single win, that is not a small thing.
Sources
Consensus code. Emission schedule, difficulty algorithm, version-bit encoding and fork heights were read directly from DigiByte Core v9.26.5: validation.cpp (GetBlockSubsidy), pow.cpp (GetNextWorkRequiredV4), primitives/block.h (algorithm version bits) and kernel/chainparams.cpp (fork heights). Repository: DigiByte-Core/digibyte.
Incident and release history. DigiByte Core v9.26.5 release notes (July 2026), v9.26.3 (Groestl AlgoLock), v9.26.2 (DigiDollar mainnet).
Protocol history. digibyte.org, DigiByte Wiki, Litecoin PR #608 (DigiShield adoption discussion, 2019).
Market data. CoinGecko, September 2026.
Network measurements. SHA-256 lane hashrate, difficulty, reject rates and block timings measured on SoloFury’s own DigiByte full nodes in Atlanta, Frankfurt and Tokyo, September 2026. Block 24,172,844 and the five that followed are publicly verifiable on any DigiByte explorer.
Frequently Asked Questions
Can I mine DigiByte with a Bitcoin ASIC?
Yes, unchanged. SHA-256 is one of DigiByte's five mining algorithms, so a Bitaxe, NerdQAxe, Antminer, Whatsminer or Avalon works with no firmware modification. You point the miner at a DGB stratum endpoint and use a DigiByte address as the username.
How often does a Bitaxe find a DigiByte block?
At roughly 1.5 TH/s against a SHA-256 lane running near 40 PH/s, a Bitaxe averages one DGB block every three to four weeks. On Bitcoin the same device averages around 3,500 years, which is the difference the five-algorithm design makes.
What is the DigiByte block reward in 2026?
About 251 DGB in September 2026, and falling. DigiByte has no halving: the subsidy is multiplied by 0.98884 every month by consensus rule, a decay of roughly 1.1%. It started at 8,000 DGB and reaches zero at block 41,668,798, around 2035.
Why does DigiByte use five algorithms instead of one?
So no single hardware class can control the chain. Each algorithm mines about 20% of blocks with its own independent difficulty. An attacker holding 99% of one algorithm commands only a fifth of block production, while the other four keep extending the honest chain.
What is MultiShield and how does it differ from Bitcoin's retarget?
MultiShield recalculates difficulty every block, per algorithm, from a 10-block moving average. It is deliberately asymmetric: difficulty can fall up to 16% per step but rise only 8%, so a lane abandoned by hashrate recovers faster than one being flooded.
Which blockchains adopted DigiByte's DigiShield?
More than twenty-five, including Dogecoin, Zcash, Bitcoin Cash, Bitcoin Gold, Monacoin and Ubiq. DigiByte's developers helped the Dogecoin team implement it directly in early 2014, when Dogecoin was stalling under multi-pool attacks.
Is DigiByte still actively developed?
Yes. Core v9.26.5 shipped in July 2026, rebased on Bitcoin Core 26.2, and the DigiDollar stablecoin protocol activated on mainnet at block 23,869,440 on 17 July 2026. Founder Jared Tate has contributed to the codebase since 2014.
What happened with the Groestl exploit in June 2026?
Groestl was retired in 2019, but the rule rejecting its blocks was accidentally dropped during a 2021 code rebase. In June 2026 an actor reactivated it and mined about 1,356 blocks at floor difficulty, worth roughly 351,000 DGB. No coins were stolen and the deepest reorganization was four blocks.
Does the 15-second block time cause more rejected shares?
Somewhat. A new job arrives every 75 seconds on the SHA-256 lane, so work in progress is discarded more often than on Bitcoin. Measured on SoloFury nodes: about 1.5% rejects on a low-latency link, 2-4% at 370 ms. Rejects never reduce your chance of finding a block.
Is mining DGB profitable?
Not as an energy trade. A DGB block is worth roughly one US dollar at 2026 prices, so electricity costs exceed revenue on nearly any hardware. The reason to mine DGB solo is that you actually win blocks, with the full coinbase paid straight to your own address.