@pint3swap/smart-router
v6.1.1
Published
A SDK for getting best routes from AMM
Downloads
5
Readme
Pintswap Smart Router
@pint3swap/smart-router
is a SDK for getting best trade routes from Pintswap AMM.
Install
$ pnpm add @pint3swap/smart-router
Usage (V4Router)
NOTE: V4Router
will be replaced by @pint3swap/routing-sdk
in the future
V4Router is utilize the new routing strategy introduced in smart router v5. Use BSC as an example. Here's how we use v4 router to find the best trade route swapping from BNB to CAKE.
For working code example, please refer to v4 router usage example.
- Install other dependencies
$ pnpm add @pint3swap/smart-router@5 viem@1 @pint3swap/sdk@5 @pint3swap/tokens
- Prepare on-chain rpc provider
import { createPublicClient, http } from 'viem'
const client = createPublicClient({
chain: mainnet,
transport: http('https://bsc-dataseed1.binance.org'),
batch: {
multicall: {
batchSize: 1024 * 200,
},
},
})
- Get candidate pools
import { Native } from '@pint3swap/sdk'
import { V4Router } from '@pint3swap/smart-router'
import { bscTokens } from '@pint3swap/tokens'
const swapFrom = Native.onChain(chainId)
const swapTo = bscTokens.cake
const v3Pools = await V4Router.getV3CandidatePools({
clientProvider: () => client,
currencyA: swapFrom,
currencyB: swapTo,
})
- Find the best swap trade route
import { CurrencyAmount, TradeType } from '@pint3swap/sdk'
// 0.01 BNB in our example
const amount = CurrencyAmount.fromRawAmount(swapFrom, 10 ** 16)
const trade = await V4Router.getBestTrade(amount, swapTo, TradeType.EXACT_INPUT, {
gasPriceWei: () => client.getGasPrice(),
candidatePools: v3Pools,
})
Usage (SmartRouter)
Use BSC as an example. Here's how we use smart router sdk to find the best trade route swapping from BNB to CAKE and construct a valid swap transaction from the trade route we got.
For working code example, please refer to smart-router-example.
- Install other dependencies
$ pnpm add viem@1 [email protected] @pint3swap/sdk @pint3swap/tokens
- Prepare on-chain rpc provider and subgraph providers
import { createPublicClient, http } from 'viem'
import { GraphQLClient } from 'graphql-request'
import { SmartRouter } from '@pint3swap/smart-router'
const publicClient = createPublicClient({
chain: mainnet,
transport: http('https://bsc-dataseed1.binance.org'),
batch: {
multicall: {
batchSize: 1024 * 200,
},
},
})
const v3SubgraphClient = new GraphQLClient('https://api.thegraph.com/subgraphs/name/pintswap/exchange-v3-bsc')
const v2SubgraphClient = new GraphQLClient('https://proxy-worker-api.pintswap.com/bsc-exchange')
const quoteProvider = SmartRouter.createQuoteProvider({ onChainProvider: () => publicClient })
- Get candidate pools
import { Native } from '@pint3swap/sdk'
import { SmartRouter } from '@pint3swap/smart-router'
import { bscTokens } from '@pint3swap/tokens'
const swapFrom = Native.onChain(chainId)
const swapTo = bscTokens.cake
const [v2Pools, v3Pools] = await Promise.all([
SmartRouter.getV2CandidatePools({
onChainProvider: () => publicClient,
v2SubgraphProvider: () => v2SubgraphClient,
v3SubgraphProvider: () => v3SubgraphClient,
currencyA: swapFrom,
currencyB: swapTo,
}),
SmartRouter.getV3CandidatePools({
onChainProvider: () => publicClient,
subgraphProvider: () => v3SubgraphClient,
currencyA: swapFrom,
currencyB: swapTo,
}),
])
- Find the best swap trade route
import { CurrencyAmount, TradeType } from '@pint3swap/sdk'
// 0.01 BNB in our example
const amount = CurrencyAmount.fromRawAmount(swapFrom, 10 ** 16)
const trade = await SmartRouter.getBestTrade(amount, swapTo, TradeType.EXACT_INPUT, {
gasPriceWei: () => publicClient.getGasPrice(),
maxHops: 2,
maxSplits: 2,
poolProvider: SmartRouter.createStaticPoolProvider(pools),
quoteProvider,
quoterOptimization: true,
})
- Build the swap transaction from trade
import { Percent } from '@pint3swap/sdk'
import { ChainId } from '@pint3swap/chains'
import { SmartRouter, SMART_ROUTER_ADDRESSES, SwapRouter } from '@pint3swap/smart-router'
import { hexToBigInt } from 'viem'
const routerAddress = SMART_ROUTER_ADDRESSES[ChainId.BSC]
// Swap recipient address
const address = '0x'
const { value, calldata } = SwapRouter.swapCallParameters(trade, {
recipient: address,
slippageTolerance: new Percent(1),
})
const tx = {
account: address,
to: routerAddress,
data: calldata,
value: hexToBigInt(value),
}
const gasEstimate = await publicClient.estimateGas(tx)
FAQ
- What's the difference between
SmartRouter
andV4Router
?
SmartRouter
is getting swap quotes by querying quoter contract on chain, while V4Router
is getting the liquidity pool data from on chain and do the swap quote calculation off chain.
Compared to SmartRouter
, V4Router
has better quoting performance since the calculation is done off chain. Also, V4Router
doesn't rely on subgraph for price reference. However, the downside of V4Router
is that the estimated quote may not be as accurate as on chain quoter due to pool data out dated or potential extra fee applied during the swap.