1.1.3 • Published 5 months ago

@cetusprotocol/farms-sdk v1.1.3

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
5 months ago

@cetusprotocol/farms-sdk

The SDK provides a Farms module for managing farming positions, liquidity, and rewards in the Cetus ecosystem. This module enables users to perform various farming operations with flexibility in how they want to manage their positions.

Getting Started

How to Use the Farms SDK?

Installation

To start using the Farms SDK, you first need to install it in your TypeScript project:

npm link: https://www.npmjs.com/package/@cetusprotocol/farms-sdk

npm install @cetusprotocol/farms-sdk

Setup

Import the SDK into the TypeScript file where you intend to use it:

import { CetusFarmsSDK } from '@cetusprotocol/farms-sdk'

Initializing the SDK

Initialize the SDK with the required configuration parameters. This typically includes setting up the network environment.

If you would like to use the mainnet network and the official Sui rpc url, you can do so as follows:

const sdk = CetusFarmsSDK.createSDK()

If you wish to set your own full node URL or network (You have the option to select either 'mainnet' or 'testnet' for the network), you can do so as follows:

const env = 'mainnet'
const full_rpc_url = 'YOUR_FULL_NODE_URL'
const wallet = 'YOUR_WALLET_ADDRESS'

const sdk = CetusFarmsSDK.createSDK({ env })

If you wish to set your own full node URL or SuiClient, you can do so as follows:

const sdk = CetusFarmsSDK.createSDK({ env, sui_client })
// or
const sdk = CetusFarmsSDK.createSDK({ env, full_rpc_url })

Usage

After linking your wallet, if you need use your wallet address to do something, you should set it by sdk.setSenderAddress.

const wallet = 'YOUR_WALLET_ADDRESS'

sdk.setSenderAddress(wallet)

if you need to change your rpc url, you can do so as follows:

const new_rpc_url = 'YOUR_NEW_FULL_NODE_URL'

sdk.updateFullRpcUrl(new_rpc_url)

Common Parameters

  • pool_id: The ID of the farms pool
  • position_nft_id: The ID of the position NFT
  • clmm_position_id: The ID of the CLMM position
  • coin_type_a & coin_type_b: Coin type identifiers for the trading pair
  • amount_a & amount_b: Amounts of coins to deposit/withdraw

1. Farms Pool Operations

Get Farms Pool List

const pool_data = await sdk.Farms.getFarmsPoolList()

Get Specific Farms Pool

const pool_id = 'YOUR_POOL_ID'

const pool_data = await sdk.Farms.getFarmsPool(pool_id)

Get Owned Position NFTs

const nft_list = await sdk.Farms.getOwnedFarmsPositionNFTList(wallet)

Get Position NFT Details

const position_nft_id = 'YOUR_POSITION_NFT_ID'

const nft_data = await sdk.Farms.getFarmsPositionNFT(position_nft_id)

2. Farming Operations

Deposit (Stake) Position

const clmm_position_id = 'YOUR_CLMM_POSITION_ID'

const payload = sdk.Farms.depositPayload({
  pool_id,
  clmm_position_id,
})

Withdraw (Unstake) Position

const payload = await sdk.Farms.withdrawPayload({
  pool_id,
  position_nft_id,
})

Harvest Rewards

const payload = await sdk.Farms.harvestPayload({
  pool_id,
  position_nft_id,
})

Batch Harvest and Collect CLMM Fees

const clmm_pool_id = 'YOUR_CLMM_POOL_ID'
const coin_type_a = '0xac2afb455cbcdc2ff1a2e9bbb8aa4ccb4506a544b08c740886892a5cdf92f472::hasui::HASUI'
const coin_type_b = '0x0000000000000000000000000000000000000000000000000000000000000002::sui::SUI'
const farms_list = [
  {
    pool_id,
    position_nft_id,
    clmm_pool_id,
    collect_fee: true,
    collect_farms_rewarder: false,
    clmm_rewarder_types: ['CLMM_REWARDER_TYPE_1'],
    coin_type_a,
    coin_type_b,
  },
]
const clmm_list = [
  {
    pool_id,
    pos_id: position_nft_id,
    collect_fee: true,
    rewarder_coin_types: ['CLMM_REWARDER_TYPE_1'],
    coin_type_a,
    coin_type_b,
  },
]
const payload = await sdk.Farms.batchHarvestAndClmmFeePayload(farms_list, clmm_list)

3. Liquidity Operations

Add Liquidity to Position

const amount_a = 'AMOUNT_A'
const amount_b = 'AMOUNT_B'

const payload = await sdk.Farms.addLiquidityFixCoinPayload({
  pool_id,
  coin_type_a,
  coin_type_b,
  position_nft_id,
  clmm_pool_id,
  amount_a,
  amount_b,
  fix_amount_a: true,
  collect_fee: true,
  collect_rewarder: true,
  clmm_rewarder_types: ['CLMM_REWARDER_TYPE_1'],
})

Remove Liquidity

const min_amount_a = 'MIN_AMOUNT_A'
const min_amount_b = 'MIN_AMOUNT_B'
const liquidity = 'LIQUIDITY'

const payload = await sdk.Farms.removeLiquidityPayload({
  pool_id,
  coin_type_a,
  coin_type_b,
  position_nft_id,
  clmm_pool_id,
  min_amount_a,
  min_amount_b,
  collect_rewarder: true,
  clmm_rewarder_types: [],
  delta_liquidity: liquidity,
  unstake: true,
  close_position: false,
})

4. Reward Operations

Claim Fees and CLMM Rewards

const payload = await sdk.Farms.claimFeeAndClmmReward({
  pool_id,
  position_nft_id,
})

5. Contract Error Codes

the Cetus smart contract may return the following error codes:

ModuleError CodeDescriptionContract Methods
stable_farming::pool1Invalid CLMM Pool IDcollect_clmm_reward, collect_fee
stable_farming::pool2Pool Position Not Matchremove_liquidity, deposit,withdraw,harvest ,add_liquidity,add_liquidity_fix_coin
stable_farming::pool3Pool CLMM Pool Not Matchremove_liquidity, add_liquidity ,add_liquidity_fix_coin
stable_farming::pool4Rewarder Not Harvestedwithdraw,
stable_farming::pool5Effective Range Errorcheck_effective_range
stable_farming::pool6Rewarder Not Existsharvest
stable_farming::pool7Rewarder Already Existsadd_rewarder
stable_farming::pool8Pool Has No Rewarderdeposit
stable_farming::pool9Start Errorupdate_effective_tick_range
stable_farming::pool10Invalid Tick Rangecalculate_position_share
stable_farming::pool11Invalid Sqrt Pricecalculate_position_share
stable_farming::pool12Amount In Above Max Limitadd_liquidity_fix_coin_to_clmm,add_liquidity_to_clmm
stable_farming::pool15Amount Out Below Min Limitremove_liquidity_from_clmm

More About Cetus

Use the following links to learn more about Cetus:

Learn more about working with Cetus in the Cetus Documentation.

Join the Cetus community on Cetus Discord.

License

MIT