UNPKG

lotus-v4-sdk

Version:

⚒️ An SDK for building applications on top of Lotus V4

11 lines (10 loc) 340 B
import { Interface } from '@ethersproject/abi'; export declare abstract class Multicall { static INTERFACE: Interface; /** * Cannot be constructed. */ private constructor(); static encodeMulticall(calldataList: string | string[]): string; static decodeMulticall(encodedCalldata: string): string[]; }