Skip to content

Commit ab8b16f

Browse files
committed
vest apr fixes
1 parent f087dd8 commit ab8b16f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/server/handlers/hive-explorer.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,10 @@ export const fetchGlobalProps = async () => {
5151
? globalDynamic.head_block_number
5252
: Number(globalDynamic.head_block_number) || 0;
5353

54-
const inflationBase = 9;
54+
// 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;
5558
const inflationDecreasePerStep = 0.01;
5659
const blocksPerStep = 250000;
5760
const inflationFloor = 0.95;

0 commit comments

Comments
 (0)