aboutsummaryrefslogtreecommitdiffstats
path: root/packages/typescript-typings/types/ethereumjs-abi/index.d.ts
blob: 2d9fc9fcd80b255bbccbe903bb8d1d349e71d0e5 (plain) (blame)
1
2
3
4
5
6
7
declare module 'ethereumjs-abi' {
    export function soliditySHA3(argTypes: string[], args: any[]): Buffer;
    export function soliditySHA256(argTypes: string[], args: any[]): Buffer;
    export function methodID(name: string, types: string[]): Buffer;
    export function simpleEncode(signature: string, ...args: any[]): Buffer;
    export function rawDecode(signature: string[], data: Buffer): any[];
}