Algebra eternal (v2-like) farming
Returns information about a farmd liquidity NFT
Developer note: farms[tokenId][incentiveHash] => Farm
constructor(contract IAlgebraPoolDeployer _deployer, contract INonfungiblePositionManager _nonfungiblePositionManager) public public
| Name | Type | Description |
|---|---|---|
| _deployer | contract IAlgebraPoolDeployer | pool deployer contract address |
| _nonfungiblePositionManager | contract INonfungiblePositionManager | the NFT position manager contract address |
function createEternalFarming(struct IIncentiveKey.IncentiveKey key, struct IAlgebraEternalFarming.IncentiveParams params, struct IAlgebraFarming.Tiers tiers) external returns (address virtualPool) external
Creates a new liquidity mining incentive program
| Name | Type | Description |
|---|---|---|
| key | struct IIncentiveKey.IncentiveKey | Details of the incentive to create |
| params | struct IAlgebraEternalFarming.IncentiveParams | Params of incentive |
| tiers | struct IAlgebraFarming.Tiers | The amounts of locked token for liquidity multipliers |
Returns:
| Name | Type | Description |
|---|---|---|
| virtualPool | address | The virtual pool |
function deactivateIncentive(struct IIncentiveKey.IncentiveKey key) external external
Detach incentive from the pool and deactivate it
| Name | Type | Description |
|---|---|---|
| key | struct IIncentiveKey.IncentiveKey | The key of the incentive |
function decreaseRewardsAmount(struct IIncentiveKey.IncentiveKey key, uint256 rewardAmount, uint256 bonusRewardAmount) external external
| Name | Type | Description |
|---|---|---|
| key | struct IIncentiveKey.IncentiveKey | |
| rewardAmount | uint256 | |
| bonusRewardAmount | uint256 |
function addRewards(struct IIncentiveKey.IncentiveKey key, uint256 rewardAmount, uint256 bonusRewardAmount) external external
| Name | Type | Description |
|---|---|---|
| key | struct IIncentiveKey.IncentiveKey | |
| rewardAmount | uint256 | |
| bonusRewardAmount | uint256 |
function setRates(struct IIncentiveKey.IncentiveKey key, uint128 rewardRate, uint128 bonusRewardRate) external external
| Name | Type | Description |
|---|---|---|
| key | struct IIncentiveKey.IncentiveKey | |
| rewardRate | uint128 | |
| bonusRewardRate | uint128 |
function enterFarming(struct IIncentiveKey.IncentiveKey key, uint256 tokenId, uint256 tokensLocked) external external
enter farming for Algebra LP token
| Name | Type | Description |
|---|---|---|
| key | struct IIncentiveKey.IncentiveKey | The key of the incentive for which to enterFarming the NFT |
| tokenId | uint256 | The ID of the token to exitFarming |
| tokensLocked | uint256 | The amount of tokens locked for boost |
function exitFarming(struct IIncentiveKey.IncentiveKey key, uint256 tokenId, address _owner) external external
exitFarmings for Algebra LP token
| Name | Type | Description |
|---|---|---|
| key | struct IIncentiveKey.IncentiveKey | The key of the incentive for which to exitFarming the NFT |
| tokenId | uint256 | The ID of the token to exitFarming |
| _owner | address | Owner of the token |
function getRewardInfo(struct IIncentiveKey.IncentiveKey key, uint256 tokenId) external view returns (uint256 reward, uint256 bonusReward) view external
reward amounts can be outdated, actual amounts could be obtained via static call of `collectRewards` in FarmingCenter
| Name | Type | Description |
|---|---|---|
| key | struct IIncentiveKey.IncentiveKey | The key of the incentive |
| tokenId | uint256 | The ID of the token |
Returns:
| Name | Type | Description |
|---|---|---|
| reward | uint256 | The reward accrued to the NFT for the given incentive thus far |
| bonusReward | uint256 | The bonus reward accrued to the NFT for the given incentive thus far |
function collectRewards(struct IIncentiveKey.IncentiveKey key, uint256 tokenId, address _owner) external returns (uint256 reward, uint256 bonusReward) external
reward amounts should be updated before calling this method
| Name | Type | Description |
|---|---|---|
| key | struct IIncentiveKey.IncentiveKey | |
| tokenId | uint256 | |
| _owner | address |
Returns:
| Name | Type | Description |
|---|---|---|
| reward | uint256 | |
| bonusReward | uint256 |