100M Token Supply
TGE – Token generation event for a full 60% released and unlocked; at a low enough MC $5-10M that the incentive to stake and build with the project ensues.

Battle Code Architecture & Logic
The Battle Code smart contract, deployed as a Solana Program, orchestrates the 1v1 NFT battle adjudication with cyclic logic: “rock-paper-scissors” as a loose analogy. This Solana-native implementation leverages Anchor framework for account management, ensuring gas-efficient execution and scalability for 1,000+ simultaneous users via Helius RPC nodes.
A user initiates a Challenge by invoking the ‘post_challenge instruction within the Battle Code Program. If a BCODE wager is involved the ‘post_wager instruction is called and if Challenge accepted both Users see a request to invoke ‘post_escrow instruction.

The Program fetches the body type, variable traits—Strength, Speed, Intelligence, Weapon, and Shield; 8-15 points total depending on the NFT via their SPL Token metadata accounts.
It retrieves the chosen Environ (e.g., NYC, Mars, Coliseum) from the `BattleState` account, factoring in its three movable 3D objects as contextual modifiers.
Using a custom Rust function (`evaluate traits`), the contract computes a battle SCORE by comparing trait values against a pre-programmed dataset of outcomes. This SCORE reflects each NFT’s strategic positioning.




