| Authors | tacotime; s_machete; jy-p |
|---|---|
| Year | 2013 |
| Project | Decred |
| License | ISC License |
| Official Source | https://decred.org/research/buterin2014.pdf |
This page is an educational summary and analysis of an official whitepaper or technical paper, written for reference purposes. It is not a verbatim reproduction. CryptoGloss does not claim authorship of the original work. All intellectual property rights remain with the original author(s). The official document is linked above.
Decred is a peer-to-peer cryptocurrency described in the 2013 Memcoin2 paper and formalized through subsequent 2016 documentation. The project launched mainnet in February 2016. Its core contribution is a hybrid Proof-of-Work/Proof-of-Stake consensus mechanism that prevents any single group — miners, developers, or large holders — from unilaterally controlling the network.
Decred also pioneered on-chain treasury governance through Politeia, where stakeholders vote with locked DCR tickets to direct development funds and protocol upgrades. Every block in Decred exercises both PoW and PoS simultaneously: miners must produce a valid block, but that block is only accepted if a quorum of randomly selected ticket holders vote to approve it.
> Technical documentation: Available at docs.decred.org and decred.org/research/.
Publication and Context
Decred originated from Memcoin2, a 2013 whitepaper by pseudonymous authors tacotime and s_machete on the bitcointalk forum. The paper proposed splitting block rewards between miners and a proof-of-stake ticket lottery to address Bitcoin’s governance problem: miners could impose rule changes (or block them) by simple majority without any recourse for coin holders.
Company 0 (later Block Head), the company founded by jy-p (Jake Yocom-Piatt), implemented Decred. The project launched February 8, 2016 with an 8% premine: 4% to the developers and 4% to early airdrop participants.
The Decred team also created btcsuite, a Go implementation of Bitcoin that became the basis for several major projects including btcd, lnd (Lightning Network Daemon), and Ethereum’s Go implementation libraries.
Hybrid PoW/PoS Mechanism
Mining (PoW Layer)
Block time: 5 minutes.
Ticket Voting (PoS Layer)
- Ticket price fluctuates based on demand (a PoS difficulty algorithm)
- The target ticket pool size is 40,960 tickets
- Tickets mature after 256 blocks (~18 hours) before they become live
- Each block, 5 tickets are pseudorandomly selected from the live pool to vote
- Tickets expire if not called within ~142 days
Block Approval
- At least 3 of 5 selected tickets must cast approval votes
- If fewer than 3 tickets vote (e.g., due to ticket holder inactivity), the block is invalidated — the miner earns no reward, and the next miner must rebuild on the prior block
This mechanic gives ticket holders an absolute veto over invalid or unwanted blocks, which means a 51% attack requires not just mining majority but also corrupting ticket holders.
Reward Split
- 60% to PoW miners
- 30% to PoS ticket voters (split 5 ways among the 5 voting tickets)
- 10% to the Decred Treasury (self-funding development)
Politeia — On-Chain Treasury Governance
Politeia is Decred’s timestamped proposal system for directing the 10% treasury:
- Proposals are submitted, discussed, and voted on using ticket-weighted votes
- Proposals can fund development, marketing, research, or protocol changes
- Each vote requires ≥20% quorum and ≥60% approval to pass
- Ticket holders vote Yes/No per-proposal; vote weight equals one ticket
The treasury accumulated tens of millions of dollars in DCR from the 10% block subsidy, making Decred one of the few crypto projects with a clearly defined, community-governed development budget that does not depend on VC rounds or foundation sales.
Lightning Network and Privacy
Decred implemented Lightning Network support (using the btcsuite LND codebase) enabling fast off-chain DCR payments.
Decred also introduced CoinShuffle++ — a mixing protocol for on-chain privacy — and developed BLAKE-256 and Blobshare cryptographic primitives. Privacy mixing was further enhanced in later releases with StakeShuffle.
Sections of the Whitepaper
| Section | Content |
|---|---|
| Introduction | Bitcoin miner governance problem; motivation for hybrid design |
| Hybrid Consensus | PoW mining + PoS ticket lottery; block approval quorum |
| Ticket System | Ticket pricing, maturation, expiry, random selection |
| Reward Distribution | 60/30/10 split rationale |
| Treasury | 10% to treasury, Politeia governance |
| BLAKE-256 | Hash function choice and security properties |
Reality Check
Decred’s hybrid consensus is technically elegant and solves a genuine governance problem. Ticket holders did use their veto in practice — notably, Decred ticket holders rejected a proposed block format change from miners in 2020, demonstrating the PoS veto was real and functional.
Limitations:
- Low adoption: Despite technical innovation, Decred never achieved significant market share or developer ecosystem relative to its technical merit. DCR daily volume and market cap remained small.
- Premine controversy: The 8% premine (including 4% to founders) drew early criticism, though the airdrop component was distributed broadly.
- Politeia voter apathy: Like other on-chain governance systems, participation rates in Politeia votes have historically been low (10–25% of eligible tickets).
- ASIC centralization: Despite initial BLAKE-256 ASIC resistance, dedicated Decred ASICs emerged, concentrating mining among professional operators.
Legacy
Decred’s hybrid PoW/PoS model was one of the first functioning implementations of ticket-based governance with real economic consequences. Its self-funding treasury via block subsidy became a model for projects including Dash, Zcash Community Grants, and others. The btcsuite Go library written by the Decred team powers Lightning Network’s primary daemon (lnd) used by millions of nodes.
Related Terms
Research
- tacotime; s_machete. (2013). Memcoin2: A Hybrid Proof-of-Work, Proof-of-Stake Crypto-Currency. bitcointalk.org.
— Original post proposing the hybrid PoW/PoS design that became Decred; discusses the PoW miner governance problem and ticket-based PoS veto.
- Company 0. (2016). Decred: An Alternative Peer-to-Peer Electronic Cash System. decred.org.
— Official Decred specification covering BLAKE-256, ticket pool mechanics, 60/30/10 reward split, and Politeia governance.
- Fanti, G., Venkatadri, G., Flajolet, P., & Viswanath, P. (2018). Dandelion: Redesigning the Bitcoin Network for Anonymity. ACM POMACS 2(2).
— Background on P2P privacy in cryptocurrency networks; relevant to Decred’s StakeShuffle and CoinShuffle++ privacy implementations.