forked from tornado-packages/tornado-core
12 lines
351 B
TypeScript
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[]>;
|