From cf883dad9d4086d3773f93f03499a3d87a02ff10 Mon Sep 17 00:00:00 2001 From: Fabio Berger Date: Sat, 21 Jul 2018 02:27:56 +0200 Subject: [PATCH] Add missing methods from ethereumjs-abi type (#27363) --- types/ethereumjs-abi/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/ethereumjs-abi/index.d.ts b/types/ethereumjs-abi/index.d.ts index 4314e46cbd..9208712d59 100644 --- a/types/ethereumjs-abi/index.d.ts +++ b/types/ethereumjs-abi/index.d.ts @@ -8,3 +8,5 @@ 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[];