Add new Setups to a Contract
A host can add new setups to a contract in addition to those created during contract initialization.
To do this, use the setFarmingSetups
function:
This function uses, as input, the FarmingSetupConfiguration
struct:
add
->true
disable
->false
index
-> the index of the new Farming setup. This parameter is empty if adding a new setup.FarmingSetupInfo
-> struct containing the new setupdata
With that populated, setFarmingSetups
internally calls the _setOrAddFarmingSetupInfo
method to create the setup, which takes as input the information just passed in the setFarmingSetups
:
info
->FarmingSetupInfo
structadd
->true
disable
->false
setupIndex
-> the index of the new Farming setup
The functioning of the Farming contract requires that a FarmingSetupInfo
struct functions as an informational repository of each FarmingSetup
. Consequently, each new setup is created by passing information from outside via a FarmingSetupInfo
struct, which will generate the corresponding FarmingSetup
internally in the Contract. The FarmingSetup
contains only the information strictly necessary for the operation of the setup; all other information is stored in the FarmingSetupInfo
.
The FarmingSetupInfo
struct for Uniswap v3 setups is composed as follows:
blockDuration
-> duration of the setup in blocksstartBlock
-> start block of the setup*originalRewardPerBlock
-> thereward per block
set when the setup is created; will remain the same unless the host modifies thereward per block
laterminStakeable
-> minimum amount of the main token that can be staked by a position in the setuprenewtimes
-> amount of times the setup can be renewedliquidityPoolTokenAddress
->address
of the Uniswap v3 liquidity pool for the setupmainTokenAddress
->address
of the chosen main token; used to perform some checks such as theminStakeable
involvingETH
-> boolean value representing if ETH is a token in the setup (true
) or not (false
)setupsCount
-> number of setups created by the passing of this info; populated automatically by the contract and for internal use onlylastSetupIndex
-> index of last setup created by this info; populated automatically by the contract and for internal use onlytickLower
->parameter representing the value oftickLower
used to create the Uniswap v3 NFT for the setup.tickUpper
->parameter representing the value oftickUpper
used to create the Uniswap v3 NFT for the setup.
*Optional. Represents the block from which activation of the setup can be attempted; activatesetup
cannot be called before that block
is reached. If startBlock
is set as zero, then the setup can be activated any time after it is created.
When creating a setup via the FarmingSetupInfo
struct, the information for the NFT to be created for the Uniswap v3 price curve and liquidity position is passed from the host. The info regarding the addresses
of the pair tokens (token0 and token1) and the pool fee is retrieved from the passed liquidityPoolTokenAddress
; to create a Free Farming Generation 2 setup, the Uniswap v3 pool you want to use must already exist. The tickLower
and tickUpper
parameters provide the remaining data.
Once a setup is created, it is represented by the FarmingSetup
struct:
infoIndex
-> setup info indexactive
-> a boolean value representing if the setup is active (true
) or inactive (false
)startBlock
-> farming setup start block corresponding to setup activation blockendBlock
-> farming setup end block calculated assetup start Block + setup duration
lastUpdateBlock
-> number of the block where an update was triggered in the setup (for internal use only such as reward position calculation)deprecatedObjectId
-> this parameter is only used in the shared-NFT 1.5 contracts, not in the regular ones.rewardPerBlock
-> farming setup reward per block settotalSupply
-> it represents theliquidity
parameter of the NFT (Uniswap v3) that is the total liquidity amount inserted all users of that setup.
Last updated