astra-cl-sdk-dev
Version:
⚒️ An SDK for building applications on top of Astra CL
11 lines (10 loc) • 331 B
TypeScript
import { Interface } from '@ethersproject/abi';
export declare abstract class Multicall {
static INTERFACE: Interface;
/**
* Cannot be constructed.
*/
private constructor();
static encodeMulticall(calldatas: string | string[]): string;
static decodeMulticall(multicall: string): string[];
}