🔏Vesting: team tokens unlock slowly—no instant dumps
The DWOJ LockBox—powered by our MonacoVesting contract—turns your raw presale allocation into a disciplined, slice-by-slice token release that rewards patience and prevents “pump-and-dump” behavior. Here’s how it works and why it matters:
1. Deposit & Bonus Calculation
When the presale closes, each participant’s allocation is sent to the LockBox. The contract automatically applies a configurable reward percent (for example, a 5 % bonus) so that your total vested amount equals your principal plus bonus.
totalVest = principal + (principal × rewardPercent / 100)2. Slice-Based Release
Rather than unleashing your entire balance at once, LockBox divides totalVest into equal “slices.” If you choose a 12-month vesting with monthly intervals, you receive 1/12 of your tokens each month. Internally, LockBox records for each slice:
amount (uint128)
releaseTime (timestamp)
claimed flag
This ensures you can only claim tokens on or after each release date, aligning incentives with long-term holding.
3. Secure Claiming
Pausable & ReentrancyGuard: Claims can be paused globally in an emergency, and each claim call is protected against reentrancy attacks.
Single-Slice or Bulk: You can call
claimSlice(idx)to unlock one tranche, orclaimAll()to sweep every matured slice at once.Real-Time Transparency: Public view functions let you query your next release time, total locked, and total claimable amounts.
4. Administrative Controls
Configurable Interval & Slices: The owner can adjust vesting interval or number of slices before deposits begin.
Presale Integration: Only the presale contract may call
depositByPresale(), preventing unauthorized minting.Emergency Rescue: Any stray ERC-20 tokens (other than the sale token) can be rescued to a secure multisig, safeguarding against accidental transfers.
5. Why Vesting Matters
No Instant Dumps: Large holders can’t unload their entire stake at TGE, protecting price stability.
Aligned Incentives: Regular unlocks keep you engaged and invested in DWOJ’s success.
Community Trust: Time-based schedules signal commitment from both participants and the team.
With the DWOJ LockBox, every presale participant becomes a long-term stakeholder—enjoying predictable token releases, built-in bonus incentives, and ironclad security from deployment onward.
Last updated