Skip to content

Commit 2979df5

Browse files
committed
expand maths, remove comment
update gwei value used in tldr to match the below mathematics
1 parent 896675b commit 2979df5

File tree

1 file changed

+7
-8
lines changed
  • src/content/upgrades/merge/issuance

1 file changed

+7
-8
lines changed

src/content/upgrades/merge/issuance/index.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ title="ETH issuance tldr">
2222
- Stakers are issued approximately 1,700 ETH/day, based on about 14 million total ETH staked
2323
- The exact staking issuance fluctuates based on the total amount of ETH staked
2424
- **Since The Merge, only the ~1,700 ETH/day remains, dropping total new ETH issuance by ~88%**
25-
- The burn: This fluctuate according to network demand. _If_ an average gas price of at least 17 gwei is observed for a given day, this effectively offsets the ~1,700 ETH that is issued to validators and brings net ETH inflation to zero or less for that day.
25+
- The burn: This fluctuate according to network demand. _If_ an average gas price of at least 16 gwei is observed for a given day, this effectively offsets the ~1,700 ETH that is issued to validators and brings net ETH inflation to zero or less for that day.
2626

2727
</Card>
2828

@@ -40,8 +40,6 @@ Validators on the Beacon Chain are rewarded with ETH for attesting to the state
4040

4141
### Pre-merge issuance breakdown {#pre-merge-issuance-breakdown}
4242

43-
<!-- Total ETH supply: **~119,300,000 ETH** (as of Q2 2022, prior to The Merge) -->
44-
4543
Total ETH supply: **~120,520,000 ETH** (at time of The Merge in September 2022)
4644

4745
**Execution layer issuance:**
@@ -101,18 +99,19 @@ On top of the fee burn implemented by the London upgrade, validators can also in
10199

102100
As discussed above, the amount of ETH issued in a given day is dependent upon the total ETH staked. At time of writing, this is approximately 1700 ETH/day.
103101

104-
To determine the average gas price required to completely offset this issuance in a given 24-hour period, we'll start by calculating the total number of blocks in a day:
102+
To determine the average gas price required to completely offset this issuance in a given 24-hour period, we'll start by calculating the total number of blocks in a day, given a block time of 12 seconds:
105103

106-
- `1 block / 12 seconds = 5 blocks/minute`
107-
- `(5 blocks/minute) * (60 minutes/hour) * (24 hours/day) = 7200 blocks/day`
104+
- `(1 block / 12 seconds) * (60 seconds/minute) = 5 blocks/minute`
105+
- `(5 blocks/minute) * (60 minutes/hour) = 300 blocks/hour`
106+
- `(300 blocks/hour) * (24 hours/day) = 7200 blocks/day`
108107

109108
Each block targets `15x10^6 gas/block` ([more on gas](/developers/docs/gas/)). Using this, we can solve for the average gas price (in units of gwei/gas) required to offset issuance, given a total daily ETH issuance of 1700 ETH:
110109

111-
- `7200 blocks/day * 15x10^6 gas/block * Y gwei/gas * 1 ETH/ 10^9 gwei = 1700 ETH/day`
110+
- `7200 blocks/day * 15x10^6 gas/block * `**`Y gwei/gas`**` * 1 ETH/ 10^9 gwei = 1700 ETH/day`
112111

113112
Solving for `Y`:
114113

115-
- `Y = (1700(10^9))/(7200 * 15(10^6)) = (1700(10^3)/(7200 * 15)) = 16 gwei` (rounding to only two significant digits)
114+
- `Y = (1700(10^9))/(7200 * 15(10^6)) = (17x10^3)/(72 * 15) = 16 gwei` (rounding to only two significant digits)
116115

117116
Another way to rearrange this last step would be to replace `1700` with a variable `X` that represents the daily ETH issuance, and to simplify the rest to:
118117

0 commit comments

Comments
 (0)