aboutsummaryrefslogtreecommitdiffstats
path: root/packages/deployer/src/globals.d.ts
blob: 2e04d83eaf99d27288d043f01d4b13854b3451fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
declare module 'solc' {
    // tslint:disable:completed-docs
    export function compile(sources: any, optimizerEnabled: number, findImports: (importPath: string) => any): any;
    export function setupMethods(solcBin: any): any;
    // tslint:enable:completed-docs
}

declare module 'web3-eth-abi' {
    // tslint:disable-next-line:completed-docs
    export function encodeParameters(typesArray: string[], parameters: any[]): string;
}