Transparency Dashboard
Every number is verifiable on-chain. Here's how the protocol works under the hood.
Open-Source Smart Contract
The 1DollarMillion V2.1.1 contract is fully open-source and verified on Etherscan. Anyone can read the source code, audit the logic, and verify that the prize distribution (995,350 / 3,650 / 1,000 split) is hardcoded and cannot be changed. The contract inherits OpenZeppelin's ReentrancyGuard, SafeERC20, and Ownable — the gold standard for secure DeFi code. The owner can only pause the contract in emergencies and claim accumulated fees; they cannot access user deposits or alter the draw mechanism.
The Solvency Invariant
The protocol maintains strict accounting: total USDT in contract must always equal user balances + prize pool + locked amounts + fees. You can verify this at any time by calling accountingSummary() on Polygonscan.
How Draws Work
The contract deducts 1 USDT per day from each active user. These deductions feed the prize pool. The pool is displayed live using O(1) time-based estimation.
