From 12ae7c009d548c2b7241b3a3896b159f1829a500 Mon Sep 17 00:00:00 2001 From: Jacob Evans Date: Thu, 19 Apr 2018 11:21:32 +1000 Subject: Support Tuples from function returns --- .../typescript-typings/types/ethers/index.d.ts | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 packages/typescript-typings/types/ethers/index.d.ts (limited to 'packages/typescript-typings') diff --git a/packages/typescript-typings/types/ethers/index.d.ts b/packages/typescript-typings/types/ethers/index.d.ts new file mode 100644 index 000000000..313e8eb8a --- /dev/null +++ b/packages/typescript-typings/types/ethers/index.d.ts @@ -0,0 +1,39 @@ +declare module 'ethers' { + export interface TransactionDescription { + name: string; + signature: string; + sighash: string; + data: string; + } + export interface CallDescription extends TransactionDescription { + parse: (...args: any[]) => any; + } + export interface FunctionDescription { + (...params: any[]): TransactionDescription | CallDescription; + inputs: { names: string[]; types: string[] }; + outputs: { names: string[]; types: string[] }; + type: string; + } + export interface EventDescription { + parse: (...args: any[]) => any; + inputs: { names: string[]; types: string[] }; + signature: string; + topic: string; + } + 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; + } +} -- cgit v1.2.3