set_is_v1_lp

An entrypoint that setups a new boolean flag: is QuipuSwap V1 LP token staked on the farm or not. Needs only in time when farm was deployed with incorrect is_v1_lp staked parameter.

Call parameters

type set_is_v1_lp_type  is [@layout:comb] record [
  fid                     : fid_type;
  is_v1_lp                : bool;
FieldTypeDescription

fid

fid_type (nat)

Farm's ID

is_v1_lp

bool

Flag that indicates: QuipuSwap V1 LP token staked or not

Usage

const tFarmAddress = "KT1...";
const params = {
    fid: 1,
    is_v1_lp: true, // or false
};
const tFarm = await tezos.contract.at(tFarmAddress);
const operation = await tFarm.methodsObject.set_is_v1_lp(params).send();

await operation.confirmation();

Errors

  • Not-admin - sender of the transaction is not current administrator.

  • QSystem/farm-not-set - farming with fid parameter doesn't exist.

Last updated