Tokenomics & NFTs
The economics for our sustainable and evergreen token!
NFTs
# Python code for GROWME multiplier
# Inverse Scaling (Power Law) implementation.
def inverse_scaling_boost(base_boost, k, n):
total_boost = sum([base_boost / (i ** k) for i in range(1, n + 1)])
return total_boost
# Example usage:
base_boost = 0.22 # 22% boost per item
k = 0.5 # Power law constant
n = 10 # Number of GROWME NFTs
total_boost = inverse_scaling_boost(base_boost, k, n)
print(f"Total Boost: {total_boost * 100:.2f}%")Last updated