@mixmarvelswap/multicall
TypeScript icon, indicating that this package has built-in type declarations

10.0.1 • Public • Published

Pancake Multicall

Enhanced multicall sdk to safely make multicalls within the gas limit.

Inspired by the 1inch multicall.

Install

$ pnpm add @mixmarvelswap/multicall @mixmarvelswap/sdk viem

Usage

Basic usage

By default the calls will be splitted into chunks based on gas limit of each call and the rpc call gas limit of the chain

import { ChainId } from '@mixmarvelswap/chains'
import { multicallByGasLimit, MulticallRequestWithGas } from '@mixmarvelswap/multicall'

const calls: MulticallRequestWithGas[] = [
  {
    // Target contract to call
    target: '0x',
    // Encoded call data
    callData: '',
    // The maximum gas limit set to this single call
    gasLimit: 1_000_000,
  },
]

const { results, blockNumber } = await multicallByGasLimit(calls, {
  chainId: ChainId.BSC,

  // Rpc client. Please refer to `PublicClient` from viem
  client,
})

for (const { success, result, gasUsed } of results) {
  if (success) {
    // Decode result
    decodeResult(result)
  }
}

Advanced usage

The rpc call gas limit can be overriden if provided. Once provided, the multicall sdk won't ask for the gas limit from on chain.

const { results, blockNumber } = await multicallByGasLimit(calls, {
  chainId: ChainId.BSC,
  client,
  gasLimit: 150_000_000,
})

Other utilities

Get multicall gas limit

import { ChainId } from '@mixmarvelswap/chains'
import { getGasLimitOnChain } from '@mixmarvelswap/multicall'

// Get the rpc call gas limit of the specified chain
const gasLimit = await getGasLimitOnChain(ChainId.BSC)

Supported chains

For supported chains and contract addresses, please refer to multicall contracts.

Readme

Keywords

none

Package Sidebar

Install

npm i @mixmarvelswap/multicall

Weekly Downloads

1

Version

10.0.1

License

none

Unpacked Size

159 kB

Total Files

31

Last publish

Collaborators

  • sunwenhao0421