aboutsummaryrefslogtreecommitdiffstats
path: root/packages/typescript-typings/types/ethers/index.d.ts
blob: addf85613d403fe84d321e04341a13d882ba7860 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
declare module 'ethers' {
    import { TxData } from '@0xproject/types';

    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;
        topics: string[];
    }
    export class Interface {
        public functions: { [functionName: string]: FunctionDescription };
        public events: { [eventName: string]: EventDescription };
        constructor(abi: any);
    }
    export class Contract {
        public static getDeployTransaction(bytecode: string, abi: any, ...args: any[]): Partial<TxData>;
        constructor(address: string, abi: any, provider: any);
    }
}