As of now, $STRDY has no utility but pure governance voting.
In order to sustain mechanics such as the current lending incentives, I propose implementing a ve-model (similar to curve and prisma)
- Allocate 15% (15 million) of the tokens for emission for the next 3 years linearly
Locking
- Users receive lock weight by locking STRDY tokens for a number of weeks. “Weeks” refers to the number of weeks that must pass before the tokens can be withdrawn.
- The maximum duration for a lock is 52 weeks.
- It is possible to extend the duration of an existing lock.
- Every Thursday, the number of weeks for a lock decreases by 1. When the lock duration reaches 0 weeks, the tokens may be withdrawn at any time.
- User lock weight calculation:
LOCK_WEIGHT = sum(weeks * balance for (weeks, balance) in USER_LOCKS)
- Unlock with an exit fee:
A user can choose to exit a lock prematurely but will pay a fee when doing so:
fee_amount = (total_amount * weeks_to_unlock) // 52
meaning if a user exits prematurely at week 26, the user pays 50% of the locked STRDY tokens to a treasury wallet, which redistributes 100% of those fees to the remaining lockers.
Emission Voting
veSTRDY holders allocate their weekly lock weight towards one or more emission receivers. Emission receivers are silos, aggregators and the veSTRDY gauge but can be extended to new products deployed on sturdy. 100% of total weekly emissions are allocated for receivers with the constraint that emissions for veSTRDY are capped at a maximum of 25% of weekly emissions. The ratio of lock weight votes between all emission receivers determine the weekly STRDY emissions the receivers accrue. Voters receive unlocked STRDY. As voting involves gas consumption, the vote a user signed for the current week shall be set also for the following week(s) until overwritten by a new vote. Emissions for receivers are distributed as locked STRDY with 8 week lock. Projects can assign rewards to voters in order to incentivize deeper liquidity on their silos or aggregators.
Boosting
Organizations or individuals, which aim to onboard a new silo or aggregator can define emission receivers in their whitelisting proposal.
Depending on the specification of the whitelisting proposal, users who deposit into aggregators (if defined as emission receiver) can boost emissions based on their veSTRDY lock weight.
The boost mechanism calculates the earning weight of the liquidity provided. If users have enough voting weight (veSTRDY) they will be able to boost their earning weight of the liquidity they lend via aggregator by up to 2.5x. This means if a user has a boost of 2.5x and provided $10,000 of value to the aggregator, the rewards are for $25,000 of value in the aggregator. The formula for calculating your boost is given below. has a maximum of 2.5 so if the formula gives a value greater than 2.5 then your boost is 2.5.
B = 1.5 * ( D_1 * V_1) / ( V_2 * D_2) + 1
- B is your rewards boost (if it’s more than 2.5 it just equals 2.5)
- D_2 is the value you provided (e.g. 10,000 if you deposit 4 ETH worth $2500 each)
- D_1 is the total value provided
- V_1 is the amount of veSTRDY you have (vote weight)
- V_2 is the total veSTRDY in the system (total vote weight)
fee mechanism
sturdy implements a fee mechanism on the yield users of the silos and aggregators gain, initially with 0% but depending on market conditions can be increased by governance. veSTRDY holders receive the fees pro rata to their lock weight.