tornado-core/dist/multicall.d.ts
2024-04-29 15:55:15 +00:00

12 lines
351 B
TypeScript

import { BaseContract, Interface } from 'ethers';
import { Multicall } from './typechain';
export interface Call3 {
contract?: BaseContract;
address?: string;
interface?: Interface;
name: string;
params?: any[];
allowFailure?: boolean;
}
export declare function multicall(Multicall: Multicall, calls: Call3[]): Promise<any[]>;