We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f087dd8 commit ab8b16fCopy full SHA for ab8b16f
src/server/handlers/hive-explorer.ts
@@ -51,7 +51,10 @@ export const fetchGlobalProps = async () => {
51
? globalDynamic.head_block_number
52
: Number(globalDynamic.head_block_number) || 0;
53
54
- const inflationBase = 9;
+ // Hive inflation started at 9.5% and decreases by 0.01% every 250k blocks
55
+ // (roughly ~8.7 days) until it reaches the 0.95% floor. Using the 9.5% base
56
+ // keeps the APR math aligned with the blockchain monetary policy.
57
+ const inflationBase = 9.5;
58
const inflationDecreasePerStep = 0.01;
59
const blocksPerStep = 250000;
60
const inflationFloor = 0.95;
0 commit comments