Staking

WHEAT can be staked for any number of days up to 180. As in Avarice and other auction tokens, the USDT from each day's lobby is distributed proportionally to all WHEAT stakers on a certain number of days. That number of days increases by 1 on each day until reaching the maximum of 50. However, there is no initial daily lobby whose dividends are distributed on a single day:

WHEAT stakers receive as harvests:

Stakes earn WHEAT bonus tokens according to the following formula:

uint256 internal constant bonus_calc_ratio = 310;

uint256 _bonusAmount = StakeAmount * ((StakeDuration**2) * bonus_calc_ratio) / 
    1e7;

Thus, staking for 90 days gives 25% bonus WHEAT, and staking for 180 days gives 100% bonus WHEAT. Staking for just a few days gives only minimal bonus WHEAT!

In addition to the above bonus, the Big Paydays bonus gives an extra 1.5% for each complete 30-day period staked!

Bonus WHEAT earnings can be boosted by staking NFTs in the Field!

The original WHEAT stake, bonus WHEAT, and USDT dividends can be claimed at the end of the staking period.

Each stake is treated as an independent unit in the UI for purposes of Stake Buying/Selling and Stake Borrowing/Lending.

Instructions:

Last updated