@gearbox-protocol/sdk 1.5.13 → 1.5.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/utils/multicall.d.ts +1 -1
- package/package.json +1 -1
package/lib/utils/multicall.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ export interface MCall<T extends ethers.utils.Interface> {
|
|
|
10
10
|
method: keyof T["functions"];
|
|
11
11
|
params?: any;
|
|
12
12
|
}
|
|
13
|
-
export declare function multicall<R extends Array<any>>(calls: Array<MCall<any>>, p: ethers.providers.Provider): Promise<R>;
|
|
13
|
+
export declare function multicall<R extends Array<any>>(calls: Array<MCall<any>>, p: Signer | ethers.providers.Provider): Promise<R>;
|
|
14
14
|
export declare class MultiCallContract<T extends ethers.utils.Interface> {
|
|
15
15
|
private readonly _address;
|
|
16
16
|
private readonly _interface;
|