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