0.0.20 • Published 1 year ago

@flowx-pkg/ts-sdk v0.0.20

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

Deprecated

Project no-longer maintenance, please use https://www.npmjs.com/package/@flowx-finance/sdk instead.

Official FlowX Finance TypeScript SDK for Sui

An FlowX Typescript SDK is a software development kit that allows developers to interact with FlowX protocols using the Typescript programming language.

Features

  • Retrieve list token in flowx and their's metadata.
  • Retrieve user liquidity.
  • Retrieve list farm genesix and user position.
  • Retrieve list farm FaaS and user position.
  • Retrieve transaction block for swap V2
  • Retrieve transaction block for swap V3
  • Retrieve transaction block liquidity management V3 (add,remove,increase liquid, collect reward)

Getting Started

npm i @flowx-pkg/ts-sdk

FlowX SDK

1. Retrieve token list in Flowx

import {getCoinsFlowX, CoinMetadata} from "@flowx-pkg/ts-sdk"

const coins: CoinMetadata[] = await getCoinsFlowX()

2. Retrieve user liquidity

import {getLiquidity,ILiquidity} from "@flowx-pkg/ts-sdk"

const userLiquidity: ILiquidity[] = await getLiquidity(address, sortType, sortOrder)
ArgumentsDescriptionType
addressAddress to retrieve informationstring
sortType(Optional) The criteria to sort data retrievedlpValue, userLpBalance, totalLpSupply
sortOrder(Optional) The order of sortingascending , descending

3. Retrieve list farm genesix and user position

import {getGenesisFarm} from "@flowx-pkg/ts-sdk"

let address: string = "..." //optional: user address
let listGenesisX: IGenesisPoolsData[] = await getGenesisFarm(address)

4. Retrieve list farm FaaS v2 and user position

import {getFaasV2} from "@flowx-pkg/ts-sdk"

let address: string = "..." //optional: user address
let listFaaS: IFaasV2[] = await getFaasV2(address)

5. SWAP V2 Function

import {calculateAmountIn, swapExactInput} from "@flowx-pkg/ts-sdk"

const coinIn = {
	type: "0x2::sui::SUI",
	symbol: "SUI",
	decimals: 9,
};
const coinOut = {
	type: "0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN",
	symbol: "wUSDC",
	decimals: 6,
};

const data = await calculateAmountIn(0.8, coinIn, coinOut); //0.8 mean the amount you want to swap

const tx: TransactionBock = await swapExactInput(
	false, //it should be false for now
	data.amountIn, //amount want to swap
	data.amountOut, //amount want to receive
	data.trades, //trades from calculate amount
	coinIn, //coin In data
	coinOut, //coin Out data
	"YOUR_ACCOUNT_RECEIVE TOKEN", //amount swap
	0.005 //slippage (0.05%)
);

6. SWAP Aggregator (V3)

getSmartRouting

Retrieve the most optimal route of smart routing for swap and amount of token user may receive.

import {getSmartRouting} from "@flowx-pkg/ts-sdk"
const smartRouting:ISmartRouting  = await getSmartRouting({
	tokenInType,
	tokenOutType,
	amountIn,
	signal,
	includeSource,
	source,
	partnerFee
})

interface ISmartRouting {
	paths: ISmartPathV3[],
	amountOut:string
}
ArgumentsDescriptionType
tokenInTypeType of token instring
tokenOutTypeType of token outstring
amountInAmount of token instring
signalSignal to abort current queryAbortSignal
includeSourceDefined way to using source to include or exclude dexboolean
source(Optional) List dex that use to searching smart route. Default when you dont pass this arg is included all dexArray("FLOWX","FLOWX_CLMM","KRIYA","TURBOS",CETUS", "AFTERMATH","DEEPBOOK")
partnerFee(Optional) Information of partnerIPartnerFee
interface IPartnerFee{
	tokenType: string[],
	partnerAddress?: string,
	percentage?: string,
	fixAmount?: string,
	commissionType: "input"| "output"| "tokensType"
}

tokensType: List type of token that will be charged as fee on each transaction. If type of both token in and out appear in the list, tokenin will be select to charge fee.
partnerAddress: address of partner receive charged fee.
percentage: Percentage based on amount of of token which charged fee.
fixAmount:Absolute amount fee charged for each transaction.
commissionType: Type of commission fee to apply, input - charge fee on input token, output - charge fee on output token, tokensType - charge fee token appear in tokensType list.

estimateGasFee

Estimate gas fee for conducting transaction, amount token out and list of amount token out from each path of smart routing

import {estimateGasFee} from "@flowx-pkg/ts-sdk"

const result:IEstimateGasResult|undefined  = await estimateGasFee(
	tx,
	account)

interface IEstimateGasResult {
	fee: string;
  	amountOut: string;
 	pathsAmountOut: string[];
}

txBuild

Retrieve the transaction block for swap

import {txBuild} from "@flowx-pkg/ts-sdk"
const tx = await txBuild({
	listSmartPath: paths,
	slippage,
	tokenIn,
	tokenOut: { ...tokenOut, amount: amountOutDev},
	account,
	partnerFee
})
ArgumentsDescriptionType
listSmartPathList all path of smart routing for current swap, each path may includes one or many routeISmartPathV3[]
slippageSlippage percent (Ex: 1% = 0.01)string
tokenInAmount (decimal) and type of token input.ITokenAmount (type:string, amount:string)
tokenOutAmount (decimal) and type of token out. In case build Tx for inspect transaction: This amount is equivalent to amountOut get from getSmartRouting. In case build Tx for actual transaction: This amount is equivalent to amountOut get from estimateGasFeeITokenAmount (type:string, amount:string)
accountAddress conducting swap transactionstring
partnerFee(Optional) Information of partner who will get commission on each transaction.IPartnerFee
inspecTransactionDefined tx build will serve for inspection transactionboolean

Usage Swap V3

import { txBuild, estimateGasFee, getSmartRouting } from "@flowx-pkg/ts-sdk"

const { paths, amountOut } = await getSmartRouting(
	coinInType,
	coinOutType,
	decimalInAmount,
	abortQuerySmartRef.current.signal,
	partnerFee
)
const txb = await txBuild({
	listSmartPath:paths,
	slippage,tokenIn,
	tokenOut,account,
	partnerFee,
	inspecTransaction:true
});

const { fee, amountOut:amountOutDev } = await estimateGasFee(txb, account);

const tx = await txBuild({
	listSmartPath: paths,
	slippage,
	tokenIn,
	tokenOut: { ...tokenOut, amount: amountOutDev},
	account,
	partnerFee
})

7. Liquidity management (V3)

getUserLiquidityV3

Retrieve the list of liquidity position owned by provided address.

import {getUserLiquidityV3, IUserLiquidV3Position} from "@flowx-pkg/ts-sdk"

const result: IUserLiquidV3Position = await getUserLiquidityV3(account)

getPositionDetailV3

Retrieve the information of provided position.

import {getPositionDetailV3, IPDV3State} from "@flowx-pkg/ts-sdk"

const result: IPDV3State = await getPositionDetailV3(positionObjectId,account,callTime);
ArgumentsDescriptionType
positionObjectIdPosition's object idstring
account(Optional) Address for checking rewards and ownership of positionstring
callTime(Optional) Internal served for retry in case of failure fetching data. Leave it blank is recommendnumber

getTickClmm

Retrieve the list of ticks of pool liquid

import {getTickClmm, IGetClmmTicks} from "@flowx-pkg/ts-sdk"

const result: IGetClmmTicks = await getTickClmm(poolId)

buildTxAddLiquidV3

Retrieve the transaction block to add liquidity (creating new position). If the pool liquid does not exist, this also create new pool liquid.

import {buildTxAddLiquidV3} from "@flowx-pkg/ts-sdk"

const tx: TransactionBock = await txBuild(
	coinX,
	coinY,
	slippage,
	fee,
	lowerTick,
	upperTick,
	amountX,
	amountY,
	account
)
ArgumentsDescriptionType
coinXToken X metadataCoinMetadata (sdk types)
coinYToken Y metadataCoinMetadata (sdk types)
slippageSlippage (EX: 0.01% = 0.0001)string
feeFee tier value of poolIFeeTierV3
lowerTickTickIndex's value of lower price that user confignumber
upperTickTickIndex's value of upper price that user confignumber
amountXAmount of token X to depositstring
amountYAmount of token Y to depositstring
accountAddress conducting transactionstring

buildTxIncreaseLiquidV3

Retrieve the transaction block to increase liquidity to existed position that user owned.

import {buildTxIncreaseLiquidV3} from "@flowx-pkg/ts-sdk"

const tx: TransactionBock = await buildTxIncreaseLiquidV3(
	amountX,
	amountY,
	account,
	coinX,
	coinY,
	positionObjectId,
	slippage
)
ArgumentsDescriptionType
amountXAmount of token X to depositstring
amountYAmount of token Y to depositstring
accountAddress conducting transactionstring
coinXToken X metadataCoinMetadata (sdk types)
coinYToken Y metadataCoinMetadata (sdk types)
positionObjectIdPosition's object idstring
slippageSlippage (EX: 0.01% = 0.0001)string

buildTxRemoveLiquidV3

Retrieve the transaction block to remove liquidity to existed position that user owned.

import {buildTxRemoveLiquidV3} from "@flowx-pkg/ts-sdk"

const tx: TransactionBock = await buildTxRemoveLiquidV3(
	coinX,
	coinY,
	positionObjectId,
	liquid2Remove,
	amountX,
	amountY,
	account,
	poolReward,
	removeAll
)
ArgumentsDescriptionType
coinXToken X metadataCoinMetadata (sdk types)
coinYToken Y metadataCoinMetadata (sdk types)
positionObjectIdPosition's object idstring
liquid2RemoveAmount liquidity desired to remove (Decimal value)string
amountXAmount of token X to depositstring
amountYAmount of token Y to depositstring
accountAddress conducting transactionstring
poolRewardList of reward tokens and their's amountIPoolRewardV3[]
removeAll(Optional) Defined remove all liquidity or notBoolean

getTxCollectRewardLiquidV3

Retrieve the transaction block to collect all pending reward user have in the positon.

import {getTxCollectRewardLiquidV3} from "@flowx-pkg/ts-sdk"

const tx: TransactionBock = await getTxCollectRewardLiquidV3(
	rewardType,
	positionObjectId,
	account,
	inheritTx
)
ArgumentsDescriptionType
rewardTypeType of reward tokensstring[]
positionObjectIdPosition's object idstring
accountAddress conducting transactionstring
inheritTx(Optional) Inherit transaction block from previous actionTransactionBlock
0.0.20

1 year ago

0.0.14

1 year ago

0.0.15

1 year ago

0.0.16

1 year ago

0.0.17

1 year ago

0.0.18

1 year ago

0.0.19

1 year ago

0.0.13

1 year ago

0.0.12

1 year ago

0.0.10

1 year ago

0.0.11

1 year ago

0.0.9

1 year ago

0.0.8

1 year ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago