aboutsummaryrefslogtreecommitdiffstats
path: root/packages/typescript-typings/types/ethers/index.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/typescript-typings/types/ethers/index.d.ts')
-rw-r--r--packages/typescript-typings/types/ethers/index.d.ts8
1 files changed, 0 insertions, 8 deletions
diff --git a/packages/typescript-typings/types/ethers/index.d.ts b/packages/typescript-typings/types/ethers/index.d.ts
index a3d27a98c..7e04c7dd1 100644
--- a/packages/typescript-typings/types/ethers/index.d.ts
+++ b/packages/typescript-typings/types/ethers/index.d.ts
@@ -23,17 +23,9 @@ declare module 'ethers' {
export class Interface {
public functions: { [functionName: string]: FunctionDescription };
public events: { [eventName: string]: EventDescription };
- // public static decodeParams(types: string[], data: string): any[];
constructor(abi: any);
}
export class Contract {
constructor(address: string, abi: any, provider: any);
}
}
-
-declare module 'ethers/utils/abi-coder' {
- export class Coder {
- public decode(names: any[], types: any[], data?: any[]): any[];
- defaultCoder: Coder;
- }
-}