Tokenomics & NFTs

The economics for our sustainable and evergreen token!

TLDR: Free to play GROWME, earn airdrops of tokens. Loyal supporters get more.

Most tokens or memecoins come with no "backing", or no real value as to what supports its token price. Therefore, buyers are susceptible to pump and dumps by insiders, KOLs, VCs. Only the lucky few will win.

GROWME is different. It is backed by Mr. J, CREEBank.org and the various games, AI applications on GROWME.fun - therefore having increasing value to support its price. A much safer experience.

Following the same motto from AGENT1: We build together, rise together.

All releases and updates are focused on growth and sustainability for the GROWME project.

NFTs

Season 1 will come with a limited supply of 1010 GROWME NFTs. Token launch and airdrops after sell out. These NFTs reward supporters and upgrades your GROWMEs.

Every GROWME NFT mint has a 1 in 10 (10%) chance to win $100 (1x) to $1000 (10x).

All proceeds from the GROWME NFTs goes to support the token launch.

Additionally, every GROWME NFT holder receives a 22% multiplier on their airdrop allocation. The more GROWME NFTs you collect, the higher the multiplier.

Stack more GROWME NFTs in your wallet and receive a higher % multiplier for your allocation based on the Inverse Scaling (Power Law).

# 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}%")
// Javascript code for GROWME multiplier 
// Inverse Scaling (Power Law) implementation.

function inverseScalingBoost(baseBoost, k, n) {
    let totalBoost = 0;
    for (let i = 1; i <= n; i++) {
        totalBoost += baseBoost / Math.pow(i, k);
    }
    return totalBoost;
}

// Example usage:
const baseBoost = 0.22;  // 22% boost per item
const k = 0.5;           // Power law constant
const n = 10;            // Number of GROWME NFTs
const totalBoost = inverseScalingBoost(baseBoost, k, n);
console.log(`Total Boost: ${(totalBoost * 100).toFixed(2)}%`);
// PHP code for GROWME multiplier 
// Inverse Scaling (Power Law) implementation.

function inverse_scaling_boost($base_boost, $k, $n) {
    $total_boost = 0;
    for ($i = 1; $i <= $n; $i++) {
        $total_boost += $base_boost / pow($i, $k);
    }
    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);
echo "Total Boost: " . ($total_boost * 100) . "%";

All winnings and claims can be made after sell out.

Last updated