From 791dfd88a6231eff3cd8c14b2115a895ad2a167f Mon Sep 17 00:00:00 2001 From: zramsay Date: Fri, 17 Oct 2025 16:49:01 +0000 Subject: [PATCH] 99/1 for the Star/Galaxy allocation --- lockdrop/constants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lockdrop/constants.py b/lockdrop/constants.py index 8503888..87b4f8f 100644 --- a/lockdrop/constants.py +++ b/lockdrop/constants.py @@ -22,8 +22,8 @@ NUM_STARS = pow(2, 16) - pow(2, 8) NUM_PLANETS = pow(2, 32) - pow(2, 16) # Allocation Distribution -STAR_ALLOCATION_PERCENT = Decimal(NUM_STARS / pow(2, 16)) -GALAXY_ALLOCATION_PERCENT = 1 - STAR_ALLOCATION_PERCENT +STAR_ALLOCATION_PERCENT = 0.99 +GALAXY_ALLOCATION_PERCENT = 0.01 # Lockdrop Duration (5 years including 1 leap year) LOCKDROP_DURATION_SECONDS = 5 * 365.25 * 24 * 60 * 60