Crates.io | astroport-incentives |
lib.rs | astroport-incentives |
version | 1.2.0 |
source | src |
created_at | 2024-02-07 12:00:24.917653 |
updated_at | 2024-08-21 11:50:18.154001 |
description | Astroport Incentives Contract distributing rewards to LP stakers |
homepage | https://astroport.fi |
repository | https://github.com/astroport-fi/astroport |
max_upload_size | |
id | 1130427 |
size | 1,035,780 |
The Astroport Incentives contract allocates token rewards for various LP tokens and distributes them pro-rata to LP stakers. This is completely reworked version of the original Generator contract. In this version we support both cw20 and native LP tokens. New generator also got rid of proxy contracts and made it much easier to add incentives (permissonless!). However, generator could require incentivization fee to be paid to add new reward schedule which is exclusively needed to prevent spamming. One more improvement is that ASTRO emissions are counted by seconds instead of blocks which makes more sense since Astroport is multichain protocol.
Contract supports following execute endpoints:
setup_pools
- is meant to be called either by owner or generator controller. Reset previous active pools and set new alloc points.deposit
- stake LP tokens in the generator in order to receive rewards. Rewards are updated and withdrawn automatically. All pools registered the Astroport factory are stakable. However, it doesn't mean that the pool is incentivized.withdraw
- withdraw part or all LP tokens from the generator. Rewards are updated and withdrawn automatically.claim_rewards
- update and withdraw all rewards associated with the LP tokens. This endpoint accepts multiple LP tokens.set_tokens_per_second
- set new number of ASTRO emissions per second. Only owner can call this endpoint.incentivize
- add new reward schedule to a specific pool. All overlapped schedules are thoroughly considered and summed up. This is permissonless endpoint. However, it requires to pay incentivization fee in case this reward is new.remove_reward_from_pool
- completely remove reward from pool. However, all accrued rewards will be considered at current point. This endpoint can be called only by owner. One must supply remaining rewards receiver address.update_config
- is meant to update general contract settings. Only owner can call this endpoint.update_blocked_tokens_list
- update list of tokens that are not allowed to be incentivized with ASTRO as well as can't be used as external rewards. Only owner can call this endpoint.deactivate_pool
- only factory can call this endpoint. Called from deregistration context in factory.propose_new_owner
, drop_ownership_proposal
, claim_ownership
- endpoints to change ownership. Only current owner can propose new owner or drop proposal and only proposed owner can claim ownership.Anyone can deposit either through direct deposit
call with native LP tokens supplied or via cw20 send hook.
Contract checks if LP token corresponds to a pair registered in factory. Any LP token is stakable by default although it doesn't mean that it is incentivized in generator.
Partially or fully withdraw LP tokens from the generator. Rewards are updated and withdrawn automatically.
Add new reward schedule to a specific pool. All overlapped schedules are thoroughly considered and summed up. This is permissonless endpoint. However, it requires to pay incentivization fee in case this reward is new. Reward schedules are counted by periods where period is one week. Each period starts on Monday 00:00 UTC and ends on Sunday 23:59 UTC. New reward schedule always starts right away and lasts till the next Monday + X weeks, where X - number of weeks specified in the schedule.
See in figure below possible scenarios. The first line represents current reward schedule, 2nd red line shows new reward schedule and 3rd line shows the result.
This is internal logic which is launched whenever LP tokens amount changes, new reward schedule is added or rewards are claimed. Each time update_rewards is called, accrued rewards / total LP staked value is added to the current reward index. rps - rewards per second
wasm1xxxxxxx
denom is prohibited but factory/wasm1xxxxxxx/astroport_lp
is allowed.