Executive Summary
1.1 Core Overview
AXION is a minimal ERC-20 token implementation deployed on BNB Smart Chain, designed with a fixed supply and a simplified, deterministic execution model.
The contract intentionally limits its functionality to core ERC-20 operations, avoiding additional modules, dynamic parameters, or administrative control mechanisms.
1.2 Fixed Supply Model
AXION operates with a fixed total supply, defined at deployment and not subject to change.
uint256 public constant MAX_SUPPLY = 1_000_000_000 * 10**18; uint256 public totalSupply = MAX_SUPPLY;
1.3 Single Genesis Distribution
All tokens are assigned at deployment through a single initialization event.
constructor() {
balanceOf[msg.sender] = MAX_SUPPLY;
emit Transfer(address(0), msg.sender, MAX_SUPPLY);
}