# What is the Bitcoin halving?

Source URL: https://help.blockstream.com/education/economics/bitcoin-economics/what-is-the-bitcoin-halving
Updated: 2026-08-03T20:08:39.000Z
Category: Economics
Section: Bitcoin Economics

---

**TL;DR:** The Bitcoin halving cuts the block reward that miners receive in half every 210,000 blocks (roughly every four years). This reduces the rate at which new bitcoin enters circulation, enforcing a predictable supply schedule that caps the total supply at 21 million bitcoin. The most recent halving occurred in April 2024, reducing the reward from 6.25 to 3.125 bitcoin per block. 

**The Bitcoin halving** is a programmed event built into Bitcoin's source code that reduces the mining block reward by 50% every 210,000 blocks. It serves as Bitcoin's core monetary policy mechanism, creating a fixed, predictable issuance schedule that no person, company, or government can alter. Four halvings have occurred so far (2012, 2016, 2020, 2024), and they will continue approximately every four years until the final fraction of a bitcoin is mined around the year 2140\. 

## What Happens During a Bitcoin Halving

Every time a Bitcoin miner successfully adds a new [block](https://help.blockstream.com/education/glossary/block) to the [blockchain](https://help.blockstream.com/education/glossary/blockchain), they receive a reward of newly created bitcoin. This reward is how new bitcoin enters circulation. The [halving](https://help.blockstream.com/education/glossary/halving) cuts that reward in half.

When Satoshi Nakamoto launched the Bitcoin network in January 2009, miners received 50 bitcoin for every block they mined. In November 2012, the first halving reduced that reward to 25 bitcoin. In July 2016, it dropped to 12.5\. In May 2020, to 6.25\. And in April 2024, the most recent halving brought it down to 3.125 bitcoin per block.

This reduction is automatic. It happens at a specific block height (a specific block number in the chain), not on a specific calendar date. Every 210,000 blocks, the reward drops. Because the Bitcoin protocol targets one block every ten minutes on average, 210,000 blocks takes approximately four years. But the actual calendar date of each halving depends on how fast blocks are actually produced, which varies slightly based on total network hashrate, the combined computing power securing the network.

The halving is not a software update, a vote, or a committee decision. The rule was written into Bitcoin's code from the very first day and has never changed. Every [Bitcoin node](https://help.blockstream.com/education/nodes/introduction-and-role/what-is-a-bitcoin-node) on the network enforces it. In Bitcoin Core's source code, the halving interval is defined by the constant `nSubsidyHalvingInterval = 210000` in [src/kernel/chainparams.cpp](https://github.com/bitcoin/bitcoin/blob/master/src/kernel/chainparams.cpp). The subsidy calculation in `GetBlockSubsidy()` (in [src/validation.cpp](https://github.com/bitcoin/bitcoin/blob/master/src/validation.cpp)) divides the initial 50 BTC reward by 2 for each completed halving interval using integer right-shift: `nSubsidy >>= halvings`.

## The Complete Halving Schedule

Bitcoin's halving schedule is fully deterministic. Every halving that will ever happen is already defined in the code. The table below shows the complete history and the projected next halving.

| Event                        | Approximate Date  | Block Height | Block Subsidy | New Bitcoin per Day (\~144 blocks) |
| ---------------------------- | ----------------- | ------------ | ------------- | ---------------------------------- |
| Genesis (launch)             | January 3, 2009   | 0            | 50 BTC        | \~7,200 BTC                        |
| First halving                | November 28, 2012 | 210,000      | 25 BTC        | \~3,600 BTC                        |
| Second halving               | July 9, 2016      | 420,000      | 12.5 BTC      | \~1,800 BTC                        |
| Third halving                | May 11, 2020      | 630,000      | 6.25 BTC      | \~900 BTC                          |
| Fourth halving (most recent) | April 19, 2024    | 840,000      | 3.125 BTC     | \~450 BTC                          |
| Fifth halving (projected)    | \~2028            | 1,050,000    | 1.5625 BTC    | \~225 BTC                          |

The pattern continues: 0.78125 bitcoin per block around 2032, 0.390625 around 2036, and so on. Each halving cuts the reward in half again. After 33 halvings (projected around the year 2140), the reward will effectively reach zero because Bitcoin uses whole-number [satoshis](https://help.blockstream.com/education/glossary/sats) (the smallest unit, equal to 0.00000001 bitcoin) and the reward can no longer be divided further.

### Under the Hood: The Supply Calculation

The [21 million](https://help.blockstream.com/education/economics/bitcoin-economics/why-is-the-bitcoin-supply-limited) cap derives from a geometric series. Each halving epoch produces 210,000 blocks × the epoch's reward. The first epoch produces 210,000 × 50 = 10,500,000 BTC. The second produces 210,000 × 25 = 5,250,000 BTC. The pattern follows 210,000 × 50 × (1 + 1/2 + 1/4 + ...), where the infinite series in parentheses converges to exactly 2\. So the theoretical maximum is 210,000 × 50 × 2 = 21,000,000 BTC.

In practice, because `GetBlockSubsidy()` uses integer division (specifically, a right bit-shift), fractional satoshis are truncated rather than rounded. Each halving divides the subsidy by 2 via integer division. After 33 halvings, the subsidy reaches 0 satoshis, and the total supply falls slightly short of 21 million. The `MAX_MONEY` constant in [src/consensus/amount.h](https://github.com/bitcoin/bitcoin/blob/master/src/consensus/amount.h) defines 2,100,000,000,000,000 satoshis (21 million BTC) as a consensus sanity check. Any transaction output exceeding this value is rejected by every node on the network.

Once the subsidy reaches zero, every bitcoin that will ever exist will already be in circulation. The total supply will settle at 20,999,999.9769 bitcoin and stop there, a little under 21 million because the integer division above truncates the subsidy at each halving.

### How to Calculate the Next Halving

Because halvings occur at specific block heights, simple arithmetic gives a timing estimate. The fifth halving will occur at block 1,050,000\. If the current block height is 883,000 (as an example), there are 167,000 blocks remaining. At an average of ten minutes per block, that equals approximately 1,670,000 minutes, or about 3.17 years. Adding that to today's date gives a rough calendar estimate.

Block explorers like [Blockstream Explorer](https://blockstream.info/) display the current block height in real time, so anyone can calculate how many blocks remain until the next halving and estimate the date themselves.

## Why the Halving Exists

Satoshi Nakamoto designed the halving to solve a fundamental problem: how do you distribute a new digital currency fairly while ensuring it remains scarce over time?

Gold provided the model. When humans first discovered gold, it was relatively easy to find. Surface deposits were accessible, and early miners could collect large quantities. Over centuries, the easy deposits were exhausted, and extracting new gold became progressively harder and more expensive. The rate of new gold entering the world's supply declined naturally over time.

Satoshi described this analogy directly in early communications about Bitcoin. The halving mimics the diminishing extraction rate of a scarce natural resource, but replaces geology with mathematics. Instead of physical scarcity enforced by the earth's crust, Bitcoin enforces digital scarcity through code.

### A Known, Fixed Supply Schedule

Fiat currency, gold, and bitcoin differ most in how knowable their future supply is. Central banks set policy that drives how much new money is created, and that policy can change from one meeting to the next. Gold's new supply is determined by geology and economics, and while it tends to run between 1% and 2% per year, the exact rate is uncertain. Bitcoin's new supply is determined by mathematics and is known decades in advance.

Any participant can compute how many bitcoin exist today, how many will exist next year, and how many will exist in 2140\. No other widely held monetary asset publishes its future issuance to this precision.

## How the Halving Creates Scarcity

Scarcity means limited supply relative to demand. The halving enforces scarcity on the supply side by reducing the rate at which new bitcoin becomes available.

### The Supply Side

Before the 2024 halving, miners produced approximately 900 new bitcoin per day (6.25 bitcoin per block, roughly 144 blocks per day). After the halving, that dropped to approximately 450 per day. The total amount of bitcoin available to buy on any given day from newly mined supply was cut in half.

This is a permanent reduction. The supply rate never goes back up. Every halving ratchets the rate lower, and it stays lower until the next halving ratchets it lower again.

### The Demand Side

The halving does not directly affect demand. People's desire to buy, hold, or use bitcoin depends on many factors: awareness, adoption, macroeconomic conditions, regulation, technological development, and more. But if demand remains constant or grows while the rate of new supply is cut in half, basic economics describes what happens: the same amount of demand chasing fewer available units creates upward pressure on price.

This is the same principle that applies to any scarce resource. If a gold mine suddenly produced half as much gold each year while jewelry demand stayed the same, the price of gold would face upward pressure. The halving applies this principle to Bitcoin on a fixed, predictable schedule.

### Stock-to-Flow

Economists measure scarcity using the stock-to-flow ratio: the total existing supply (stock) divided by the annual new production (flow). Gold has a stock-to-flow ratio of roughly 60, meaning it would take about 60 years of current production to double the existing supply. This high ratio is what gives gold its monetary premium.

Each halving doubles Bitcoin's stock-to-flow ratio by cutting the flow in half while the stock continues growing (slowly). After the 2024 halving, Bitcoin's stock-to-flow ratio exceeded 100, surpassing gold's for the first time in Bitcoin's history.

## Bitcoin's Monetary Policy Compared to Fiat and Gold

Every monetary system has rules governing how new units enter circulation. These rules determine whether the money holds its value over time or loses it. The halving is Bitcoin's monetary policy, and it differs fundamentally from both fiat currency and gold.

### Fiat Currency: Unlimited, Discretionary Supply

Central banks like the Federal Reserve, the European Central Bank, and the Bank of Japan set the policy that governs fiat money supply, with no predetermined quantitative limit and no fixed schedule. Most broad money is created when commercial banks lend, so the total reflects bank and borrower behaviour alongside that policy. Between 2020 and 2022, the U.S. M2 money supply expanded by more than 40%. Growth of that size can reduce what each existing dollar buys, depending on how far output and money demand move with it.

Fiat monetary policy is discretionary. It depends on the decisions of a small group of people who may face political pressure, respond to short-term crises, or simply make mistakes. The rules can change between one meeting and the next.

### Gold: Scarce but Unpredictable

Gold is scarce, and no one can print more of it. Annual mine production adds roughly 1% to 2% to the existing above-ground supply. But the exact rate depends on geology, mining technology, energy costs, and gold prices. New discoveries, improved extraction techniques, or rising prices that make marginal deposits profitable can all increase gold's supply rate unpredictably.

Gold's scarcity is enforced by nature, which means it is reliable in the long run but unpredictable in the short run.

### Bitcoin: Scarce, Predictable, and Immutable

Bitcoin combines a fixed supply cap of 21 million with an issuance schedule known in advance, which no person or institution can change unilaterally.

| Property                      | U.S. Dollar (Fiat)           | Gold                                                                                       | Bitcoin                               |
| ----------------------------- | ---------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------- |
| Total supply cap              | None                         | \~216,000 metric tons above ground (as of 2024, per World Gold Council); unknown remaining | 21 million bitcoin (hard cap)         |
| New supply rate               | Discretionary (central bank) | \~1-2% per year (variable)                                                                 | Fixed by code, halves every \~4 years |
| Supply predictability         | Unknown beyond next meeting  | Roughly predictable                                                                        | Known through 2140                    |
| Who controls supply           | Central bankers              | Geology + economics                                                                        | Math (no one)                         |
| Current annual inflation rate | Varies (often 2-10%+)        | \~1.5%                                                                                     | \~0.85% (post-2024 halving)           |

Bitcoin's current annual issuance rate (approximately 0.85% post-2024 halving) is already below gold's. After the 2028 halving, it will drop to approximately 0.4%. With each halving, bitcoin's monetary inflation approaches zero.

Changing that trajectory would take a consensus rule change adopted across the network rather than a central bank vote, a geological discovery, or a technological breakthrough. The rules are embedded in the protocol and enforced independently by every full node, and the chain has produced blocks continuously since January 3, 2009.

## Impact on Miners

Miners are the most directly affected participants in a halving. Their primary revenue source, the block reward, drops by 50% overnight. Understanding how miners adapt explains why the Bitcoin network remains secure through each halving.

### The Immediate Revenue Shock

On April 19, 2024, the block reward dropped from 6.25 to 3.125 bitcoin. For a miner who was earning the equivalent of $400,000 per block (at bitcoin prices around that time), the reward instantly became worth roughly $200,000\. Operating costs, including electricity, equipment depreciation, cooling, and facility expenses, did not drop by a single dollar.

This creates a profitability squeeze. Miners with the highest costs per bitcoin mined (those using older, less efficient hardware or paying higher electricity rates) may find their operations unprofitable. Some shut down, while others relocate to regions with cheaper power or upgrade to more efficient mining hardware.

### The Difficulty Adjustment: Bitcoin's Self-Correcting Mechanism

When less efficient miners leave the network, the total hashrate temporarily decreases. Blocks start arriving more slowly than the target rate of one every ten minutes.

Bitcoin has a built-in correction for this: the [difficulty adjustment](https://help.blockstream.com/education/glossary/difficulty-adjustment). Every 2,016 blocks (approximately every two weeks), the protocol recalculates the mining difficulty target. If blocks have been coming too slowly, difficulty drops, making it easier and cheaper to mine. If blocks have been coming too quickly, difficulty increases.

This is a self-regulating feedback loop. When unprofitable miners exit, difficulty adjusts downward, reducing the cost of mining for the remaining miners and restoring profitability. Blocks continue arriving at roughly ten-minute intervals regardless of how many miners are active. The network never stops.

### Mining Consolidation and Efficiency

Every halving acts as an efficiency filter. It forces the mining industry to become leaner. Miners with access to the cheapest energy, the most efficient hardware, and the best operational practices survive. Those who cannot compete on cost are replaced by those who can.

Over Bitcoin's history, this pressure has driven mining from CPUs (2009) to GPUs (2010) to FPGAs (2011) to purpose-built ASICs (2013 onward), with each generation of hardware delivering dramatically more hashes per watt of electricity. The halving does not cause this progression, but it accelerates it by raising the efficiency bar every four years.

### Transaction Fees as a Revenue Buffer

Miners also earn transaction fees, which are paid by users who want their transactions included in blocks. During periods of high network activity, fees can contribute a meaningful portion of miner revenue. On the day of the 2024 halving itself, transaction fees temporarily exceeded the block reward due to a surge in on-chain activity.

As block rewards decline with each halving, transaction fees become proportionally more important to miners. This dynamic is central to Bitcoin's long-term security model, discussed in detail below.

## Historical Price Context

Each of Bitcoin's four halvings has preceded a significant increase in bitcoin's price. This pattern is frequently cited in market commentary and warrants a factual examination.

| Halving       | Approximate Price at Halving | Approximate Peak Within 18 Months |
| ------------- | ---------------------------- | --------------------------------- |
| November 2012 | \~$12                        | \~$1,100 (November 2013)          |
| July 2016     | \~$650                       | \~$19,700 (December 2017)         |
| May 2020      | \~$8,700                     | \~$64,000 (April 2021)            |
| April 2024    | \~$64,000                    | (within current cycle)            |

The factual record is straightforward: price appreciation followed each halving. The interpretation of that record requires caution.

### Correlation, Not Causation

Four data points do not prove causation. Many factors affect bitcoin's price: global macroeconomic conditions, regulatory developments, institutional adoption, technological improvements, media coverage, and general market sentiment. Halvings coincide with some of these factors. The 2020 halving, for instance, occurred during an unprecedented period of global monetary expansion in response to the COVID-19 pandemic. Separating the halving's effect from the effect of trillions of dollars in new money creation is not possible with certainty.

The market has become significantly more sophisticated with each halving cycle. The first halving caught most participants by surprise. By the fourth, it was the subject of institutional research reports, ETF prospectus filings, and mainstream financial news coverage months in advance. An event that is widely anticipated may already be reflected in the price before it occurs.

### What Can Be Said Factually

The halving reduces sell-side pressure from miners. Before each halving, miners collectively sell a certain amount of newly mined bitcoin to cover operating costs. After the halving, the amount of new bitcoin they have to sell is cut in half. If all other market dynamics remain unchanged (which they never do), this reduction in sell pressure would favor higher prices. That logic is sound in isolation. The question is always what other dynamics are at play.

Responsible analysis acknowledges the historical pattern without extrapolating it as a guarantee.

## The Transition to Fee-Based Security

Bitcoin's security depends on miners. Miners invest real resources (electricity, hardware, facilities) to produce blocks, and that investment makes the blockchain expensive to attack. The block reward compensates miners for this security service. But the block reward is programmed to reach zero. What happens then?

### How Miner Revenue Works

Miner revenue has two components:

1. **Block reward (subsidy):** Newly created bitcoin, currently 3.125 per block. This component decreases with each halving and will eventually reach zero.
2. **Transaction fees:** Fees paid by users who want their transactions included in a block. This component is market-driven and depends on demand for block space.

Today, the block reward dominates miner revenue. Transaction fees typically contribute between 1% and 15% of total miner income in normal conditions, though spikes in network activity can temporarily push fees much higher.

### The Long-Term Security Model

By design, Bitcoin transitions from a subsidy-funded security model to a fee-funded security model over the course of 131 years (2009 to \~2140). This is not a sudden switch. Each halving shifts the balance incrementally. After the 2028 halving, the block reward will be 1.5625 bitcoin. After the 2032 halving, 0.78125\. The subsidy declines gradually, giving the fee market decades to develop.

For fee-based security to work long-term, there must be sufficient demand for Bitcoin block space to generate enough fees to compensate miners for their security expenditure. This demand can come from on-chain transactions, layer-2 settlement transactions ([Lightning Network](https://help.blockstream.com/education/glossary/lightning-network) channel opens/closes, Liquid Network peg-ins and peg-outs), inscriptions, or any other use of block space that users value enough to pay for.

### Why This Is a Gradual Transition, Not a Cliff

The halving schedule ensures the transition happens slowly. Consider the numbers:

- By 2032 (two more halvings from now), about 98.4% of all bitcoin will already have been mined, rising past 99% by the mid-2030s. The block reward will be less than one bitcoin per block.
- By 2048, the block reward will be less than 0.05 bitcoin per block.
- The final satoshi is projected to be mined around 2140, but the block reward becomes economically negligible long before that.

Each halving is an incremental test of the fee market's ability to sustain miner revenue. If transaction fees prove insufficient at any point, the difficulty adjustment ensures the network continues operating by reducing mining costs until a new equilibrium is reached. Bitcoin does not stop working if mining becomes temporarily less profitable. The difficulty adjustment simply lowers the bar until it is profitable again.

## When Is the Next Halving?

The fifth Bitcoin halving will occur at block 1,050,000\. Based on the average block interval of approximately ten minutes, this is projected to happen in approximately **2028**. The exact date depends on actual block production speed between now and then.

### How to Estimate the Date Yourself

1. Look up the current block height on [Blockstream Explorer](https://blockstream.info/).
2. Subtract it from 1,050,000 to get the number of blocks remaining.
3. Multiply the remaining blocks by ten minutes (the average block interval).
4. Convert to days, months, or years and add to today's date.

For example, if the current block height is 883,000:

- 1,050,000 - 883,000 = 167,000 blocks remaining
- 167,000 blocks × 10 minutes = 1,670,000 minutes
- 1,670,000 minutes ÷ 60 ÷ 24 ÷ 365 ≅ 3.18 years

The estimate is imprecise because blocks are not produced at exactly ten-minute intervals. Fluctuations in hashrate cause blocks to arrive faster or slower. A large increase in global hashrate can pull the halving date earlier; a decrease can push it later. The difficulty adjustment keeps the average near ten minutes, but short-term variation means the exact date remains uncertain until close to the event.

When the fifth halving arrives, the block reward will drop from 3.125 to 1.5625 bitcoin. Daily new issuance will fall from approximately 450 bitcoin to approximately 225.

## Buying Bitcoin Around Halvings

Market attention tends to spike around halving events, and price volatility can increase. Attempting to time purchases around a halving is speculative and unreliable. The halving date is known in advance, which means the market has ample time to price in expectations.

A more measured approach is [dollar-cost averaging](https://help.blockstream.com/education/economics/bitcoin-economics/dollar-cost-averaging-into-bitcoin) (DCA): buying a fixed dollar amount of bitcoin at regular intervals regardless of price or market events. This removes the need to predict whether the halving has been "priced in" and smooths out the effect of volatility over time.

You can buy bitcoin directly in the [Blockstream app](https://blockstream.com/app) to dollar-cost average regardless of halving cycles. As the halving makes each newly mined bitcoin scarcer, long-term holders benefit from moving their accumulated bitcoin to self-custody. A [hardware wallet](https://help.blockstream.com/education/wallets/security-and-storage/what-is-a-hardware-wallet) like [Jade Plus](https://store.blockstream.com/products/jade-plus) ($149-$169) keeps private keys offline and air-gapped, ensuring your bitcoin is secured by you alone as the supply schedule tightens.

## Common Misconceptions About the Halving

### "The Halving Means Bitcoin Becomes Twice as Valuable"

The halving reduces new supply by half. It does not directly change demand. If demand stays the same while new supply is halved, there is upward price pressure. But demand can also decrease, stay flat, or increase by any amount. Price depends on both sides of the equation. The halving controls only one side.

### "Bitcoin Runs Out at the Halving"

The halving does not eliminate the block reward. It cuts it in half. After the 2024 halving, miners still receive 3.125 bitcoin per block. All existing bitcoin remain in circulation. No one's bitcoin disappears. The halving only affects the rate at which new bitcoin are created going forward.

### "Mining Stops Being Profitable After a Halving"

Some miners do become unprofitable after a halving, but the network adjusts. When less efficient miners shut down, the difficulty adjustment lowers the work required per block, reducing the cost of producing one and improving the margin for the miners who remain. Whether any given miner is profitable still depends on their energy costs and on the bitcoin price. Block production has continued through all four halvings to date, because the adjustment targets the block interval rather than miner profits.

### "The Halving Guarantees a Price Increase"

Past halvings have preceded price increases, but that does not make it a guarantee, because markets price in anticipated events. The halving is announced years in advance in the most transparent way possible: anyone can read the code. An event that every market participant expects may have little additional impact when it occurs. Never make financial decisions based on the assumption that past halving patterns will repeat identically.

### "Bitcoin Will Stop Working When the Block Reward Reaches Zero"

Bitcoin's long-term security model relies on transaction fees, not the block reward. The block reward is a bootstrapping mechanism to distribute bitcoin and incentivize early miners. As it declines, transaction fees take over. The transition happens gradually over more than a century, giving the fee market ample time to develop. The network has already demonstrated sustained periods where transaction fees constituted a significant portion of miner revenue.

## Frequently Asked Questions

### How many Bitcoin halvings have there been?

Four. The halvings occurred in November 2012, July 2016, May 2020, and April 2024\. Each reduced the block reward by 50%, from the original 50 bitcoin per block down to the current 3.125 bitcoin per block.

### When is the next Bitcoin halving?

The fifth halving is projected for approximately 2028, at block height 1,050,000\. The exact date depends on how quickly blocks are produced between now and then. You can track the current block height on Blockstream Explorer to estimate the remaining time.

### What happens when all 21 million bitcoin are mined?

When the block reward reaches zero (projected around 2140), miners will be compensated entirely through transaction fees paid by users. This is by design: the block reward bootstraps the network, and transaction fees sustain it long-term. The transition is gradual, occurring over more than a century of halvings.

### Can the halving schedule be changed?

Theoretically, any code can be changed. Practically, it is nearly impossible. Changing the halving schedule would require a consensus-breaking change to Bitcoin's protocol, accepted by the vast majority of nodes, miners, exchanges, wallets, and users. Because the halving protects bitcoin holders from supply dilution, the incentive runs against the network accepting such a change, and none has been adopted in 17 years of operation.

### Does the halving affect bitcoin I already own?

It has no direct effect on bitcoin you already hold. The halving only changes the rate at which new bitcoin enters circulation. Your existing bitcoin remain exactly as they were. The halving may indirectly affect the market price by reducing new supply, but it does not change your holdings, your wallet, or your ability to send and receive bitcoin.

### Why 21 million? Why not a different number?

Satoshi Nakamoto chose the parameters (50 bitcoin starting reward, halving every 210,000 blocks) that produce a total supply approaching 21 million. Mathematically, 210,000 × 50 × 2 (the sum of the geometric series 1 + 1/2 + 1/4 + ...) = 21,000,000\. The specific number matters less than the principle: a fixed, finite supply that everyone knows in advance and no one can change unilaterally. Any fixed number achieves the same purpose. Bitcoin's smallest unit (the satoshi, 0.00000001 bitcoin) ensures that 21 million bitcoin can be divided into 2.1 quadrillion units, providing enough granularity for a global monetary system.

Navigation: Blockstream Help Center > Education > Economics > What is the Bitcoin halving?

## Related Articles in This Section
- [Bitcoin vs gold: a detailed comparison](https://help.blockstream.com/education/economics/bitcoin-economics/bitcoin-vs-gold)
- [Dollar-cost averaging into bitcoin](https://help.blockstream.com/education/economics/bitcoin-economics/dollar-cost-averaging-into-bitcoin)
- [How is bitcoin taxed?](https://help.blockstream.com/education/economics/bitcoin-economics/how-is-bitcoin-taxed)
- [What are Bitcoin ETFs?](https://help.blockstream.com/education/economics/bitcoin-economics/what-are-bitcoin-etfs)
- [What is Bitcoin's risk profile?](https://help.blockstream.com/education/economics/bitcoin-economics/what-is-bitcoins-risk-profile)
- [What is the Bitcoin halving?](https://help.blockstream.com/education/economics/bitcoin-economics/what-is-the-bitcoin-halving) (current)
- [Why does Bitcoin offer better monetary policy?](https://help.blockstream.com/education/economics/bitcoin-economics/why-does-bitcoin-offer-better-monetary-policy)
- [Why is bitcoin so volatile?](https://help.blockstream.com/education/economics/bitcoin-economics/why-is-bitcoin-so-volatile)
- [Why is the Bitcoin supply limited?](https://help.blockstream.com/education/economics/bitcoin-economics/why-is-the-bitcoin-supply-limited)
