Withdraw from a farm
Withdrawing Rewards and staked tokens from a farm contract
Withdraw
To withdraw from a TokensFarm contract, you must call withdraw
on the TokensFarm
smart contract.
In order to withdraw, you must first GET
the Stake ID. go to "Get Stake Ids and Stake Details" bellow
Parameters | Type | Description |
---|---|---|
_amount |
| the amount the user is wish to withdraw to the farm. |
stakeId |
| the id of the staker |
Get Stake Ids and Stake Details
To get staking info, pending amounts, and stake IDs from a TokensFarm contract, you must call getUserStakesAndPendingAmounts
on the TokensFarm
smart contract.
Parameters | Type | Description |
---|---|---|
user |
| the user address to get the data on |
returns:
Parameters | Type | Description |
---|---|---|
deposits |
| An array of stake Ids for each user deposit. |
pendingAmount |
| An array of the amount deposited in each stake |
depositeTime |
| An array of the time each staking occurred |
if the user has staked only once, then for in order to withdraw this particular stake, insert into the Withdraw Function the stake ID parameter: stakeID = deposits[0]
, where deposits
is the array that is returned from the getUserStakesAndPendingAmounts
function.
If a user staked multiple times, then you must call the Withdraw
function multiple times - one for each stake with the following: stakeId = deposit[0..n]
Example script for withdrawing
Last updated