VELTX is a production Web3 platform on BNB Smart Chain where membership tiers, referral placement and every payout are executed by smart contracts rather than a backend ledger. Participants activate one of six tiers in USDT; an on-chain matrix engine seats them beneath their referrer, splits each stake atomically between the treasury, the direct upline and a reinvestment credit, and lets them reopen a cycle from that accrued credit. No platform wallet ever custodies user funds — the contract is the ledger, and every placement and settlement is publicly verifiable on BscScan.
What it does well
- A forced two-leg matrix engine written in Solidity — deterministic seat placement, per-user queues drained two at a time, and spillover to a root fallback so one stalled upline can never block the rest of the network.
- Every stake is split atomically on-chain across treasury, direct upline and reinvestment credit, guarded by a solvency invariant asserting the contract always holds at least what it owes its users.
- Cycle reopening is explicit rather than automatic: completing a board credits the owner, who signs a transaction to reopen — no silent auto-recycling of anyone's balance.
- Reward-token distribution is isolated behind try/catch hooks, so a depleted reward pool can never revert or block a USDT settlement in the core contract.
- Reward maths is O(1) gas — compounding growth is capped at a fixed iteration bound, keeping costs flat whether the network has 100 users or 100,000.
- Upgradeable proxy core (OpenZeppelin) with storage-safe variable ordering, so logic fixes ship without migrating live user state.
- Separate Next.js admin panel that reconstructs network analytics directly from on-chain event logs — no shadow database to drift out of sync.