Odpočítavanie k halvingu bitcoinu

Countdown
222
d.
4
hod.
16
min.
41
sek.
Aktuálna výška bloku
Aktuálna výška bloku
808,740
Bloky do halvingu
Bloky do halvingu
31,260
Cena BTC
Cena BTC

What is a block halving?

A block halving is a process of reducing the rate at which new cryptocurrency units are generated. Specifically, it refers to the periodical halving events that decrease the block rewards provided to miners.

Why are halvings significant?

Halvings are at the core of the cryptocurrency economic models because they ensure coins will be issued at a steady pace, following a predictable decaying rate. Such a controlled rate of monetary inflation is one of the main differences between cryptocurrencies and traditional fiat currencies, which essentially have an infinite supply.

How many Bitcoin halvings have there been previously?

As of July 2019, there have only been two previous Bitcoin halving events. These occurred on the 28th of November, 2012 and the 9th of July, 2016. At the time of the first halving event, the price of Bitcoin was $12.31 and at the time of the second halving event, the price of Bitcoin was $650.63.

There will only ever be 32 bitcoin halving events. Once all of these have occurred, there will be no more halvings and there will also be no more Bitcoin created as the maximum supply will have been reached.

HalvingEst. DateBlock HeightBlock Reward (BTC)
0N/A050
111/28/2012210,00025
207/09/2016420,00012.5
32020630,0006.25
42024840,0003.125
520281,050,0001.5625

How does the Bitcoin block halving work?

The Bitcoin Halving is an essential function of the Bitcoin protocol. The code can be found on the Bitcoin Core Github and below is a snippet of the code that makes the bitcoin halving possible. As documented in the code, the block subsidy will be halved every 210,000 blocks.

How is our timer calculated?

You may notice our countdown has a different estimation than other bitcoin halving countdowns and ask "Why?"

We believe this makes our countdown more accurate because instead of using the commonly quoted average block time (10 minutes), we are using live blockchain statistics and obtaining an estimation of the current average block time, then conducting our calculation based on that. Our timer may fluctuate, however, we believe it is the most accurate block halvings clock.

The Bitcoin halvings timer on Binance Academy is calculated using the following formula:

(Halving block - Next block height) * Average time between blocks - estimated time until the next block.

Visit our glossary for further reading on Halvings.

CAmount GetBlockSubsidy(int nHeight, const Consensus::Params& consensusParams)
{
  int halvings = nHeight / consensusParams.nSubsidyHalvingInterval;
  // Force block reward to zero when right shift is undefined.
  if (halvings >= 64)
    return 0;

  CAmount nSubsidy = 50 * COIN;
  // Subsidy is cut in half every 210,000 blocks which will occur approximately every 4 years.
  nSubsidy >>= halvings;
  return nSubsidy;
}

Podrobné údaje

Celkový počet BTC v obehu
19,492,131
Celkový počet vytvoreného BTC
21,000,000
Percento vyťaženého BTC
92.82%
Trhová kapitalizácia BTC (USD)
0
BTC generovaný každý deň
0
Približný čas bloku
10.23 min.