WENBlocks
  • Getting Started
    • Overview
      • Technical Architecture
    • Key Features
  • Staking
    • Overview
    • Creating a Stake
    • Withdrawing the Stake
    • Claiming Rewards
  • Liquidity Program
    • How It Works
  • WNT
    • WNT — The Engine of the WEN Ecosystem
  • Airdrops
    • Airdrop Schedule
    • Server Management
    • Penalty Structure
    • How It Works
    • Example
  • Smart Contracts
  • Security
    • Overview
    • Internal Audits
    • External Audits
    • AI Audits
      • Grok
  • CODE
    • WENBlocksManager.sol
    • wnmContract.sol
    • wblkToken.sol
    • wuniContract.sol
    • wntToken.sol
    • syncnode.py
    • airdropGenerator.js
    • dayTrigger.js
  • Conclusion
    • Conclusion
  • Socials
    • Links
Powered by GitBook
On this page
  • Key Properties
  • Inflation and Halving
  • Strategic Launch Design
  • Halving Formula
  • Ecosystem Utility and Expansion
  • Rewards for WNM Stakers
  1. WNT

WNT — The Engine of the WEN Ecosystem

WNT (WEN Token) is the foundational reward and utility token powering the long-term growth of the WENBlocks ecosystem. It is designed to act not only as a daily reward currency for stakers, but also as the core fuel for future dApps that integrate with and expand the WENBlocks universe.

Key Properties

  • Symbol: WNT

  • Supply at Launch: 100,000,000 (burned to deadWallet)

uint256 public constant burnAmount = 100000000;    
uint256 public constant PRECISION_RATE = 1E18;
address public constant deadWallet = 0x000000000000000000000000000000000000dEaD;

constructor(string memory name_, string memory symbol_) ERC20(name_, symbol_) Ownable(msg.sender) {
        _mint(msg.sender, 2e18); // Mint initial supply to owner
        _mint(deadWallet, burnAmount * PRECISION_RATE); // Mint 100M WNT to the deadWallet
}
  • Liquidity Program Allocation: 10,000,000 WNT

  • Initial Price: ~$0.01

  • Daily Inflation: Starts at 25,000 WNT

  • Halving Cycle: Every 12 months

  • Reward Distribution: 100% of daily inflation distributed to WNM stakers based on wShares

Inflation and Halving

The WNT token uses a predictable, Bitcoin-inspired halving mechanism. Inflation begins at 25,000 WNT per day, distributed to WNM stakers based on their share of the total wShares. This amount halves every 12 months as follows:

  • Year 1: 25,000 WNT/day

  • Year 2: 12,500 WNT/day

  • Year 3: 6,250 WNT/day

  • ... and so on

This emission curve ensures sustainable long-term growth and gradually introduces scarcity.

Strategic Launch Design

To ensure a healthy market cap at launch and avoid inflation-driven dumping, 100 million WNT are pre-minted and immediately sent to the dead address. This one-time action solidifies the total capped supply and supports a long-term price floor strategy.

Additionally, 10 million WNT are allocated to the Liquidity Program, providing potential deep pools for trading and ecosystem stability from day one.

Halving Formula

if (_day % 365 == 0 && _day > lastHalvingDay) {
            WNT_INFLATION = WNT_INFLATION / 2;
            lastHalvingDay = _day;
}

Ecosystem Utility and Expansion

WNT is more than just a reward token. It is the engine token that future dApps will build upon. Any new application in the WENBlocks ecosystem is encouraged to:

  • Distribute fees or yield back to WNT holders

  • Utilize WNT for access, or staking mechanics

  • Reward WNT holders/stakers with a share of value generated by dApp activity

The vision is to turn WNT into a yield-generating, utility-rich asset, making it the economic heart of a growing web of decentralized applications.

Rewards for WNM Stakers

WNT rewards are automatically distributed daily to WNM stakers based on their wShares. The more WNM you stake and the longer the duration (along with W.BLK bonus and XEN bonus), the more wShares you generate — and the more WNT you earn each day.

WNT simply flows to those who support the system.

PreviousHow It WorksNextAirdrop Schedule

Last updated 26 days ago