formulas was turned from grapics to math eqs in estimating-pos-earning.md

This commit is contained in:
crypto.sowle 2023-09-08 23:39:56 +03:00 committed by GitHub
parent 1b9c501335
commit da022f00d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,13 +12,17 @@ Second, we again divide it by `288`. This operation lets us take the PoS mining
Now we have an estimation of how many coins participate in PoS mining currently as `Coins_in_PoS = PoS_difficulty / 1000000000000 / 288` or:
![alt coins-in-pos](../../static/img/mine/estimating-pos-earning/coins-in-pos.png "coins-in-pos")
$$
C = D_{PoS} \cdot 2.88 \cdot 10^{-14}
$$
where `C` is the total amount of coins participating in PoS mining, and `D_PoS` is the current PoS difficulty.
As you may know, the Zano network emits an average of 1 coin each minute with a 50-50 spread between PoS and PoW. That makes it `720` potential PoS reward coins per day. So if you owned all the coins in PoS, that could be your total day earnings. And if you divide `C` by `720`, you will get the number of coins you need to mine 1 Zano coin a day. Now, you can estimate the number of coins you will earn as `your_PoS_earnings = 720 * your_staking_coins / C` or, in other words:
![alt pos-earnings](../../static/img/mine/estimating-pos-earning/pos-earnings.png "pos-earnings")
$$
E_{daily} = \frac{720 \cdot N}{C} \approx \frac{2.07 \cdot 10^{17} \cdot N}{D_{PoS}}
$$
where `E_daily` is the estimated number of coins you'll earn per day, and `N` is the number of coins you're staking.