This section contains SDK example for unstaking tokens in Farm
Unstake funds from Farm NFT
import TonWeb from "tonweb";
import { FARM } from "@ston-fi/sdk";
const farm = new FARM.v3.NftItem({
tonApiClient: new TonWeb.HttpProvider(),
address: "EQA18JnBVNZZ8Wz-Kn6Mc5cy9pv798Pn8tfScjKw9NLPK3U2", // Farm v3 nft address
});
// Unstake all staked funds from Farm NFT back to the owner's wallet
const txParams = farm.buildUnstakeTxParams({
queryId: 12345,
});
// To execute the transaction, you need to send a transaction to the blockchain.
// This code will be different based on the wallet you are using to send the tx from
// logging is used for demonstration purposes
console.log({
to: txParams.to,
amount: txParams.gasAmount,
payload: txParams.payload,
});