aboutsummaryrefslogtreecommitdiffstats
path: root/packages/typescript-typings
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-07-17 22:01:01 +0800
committerFabio Berger <me@fabioberger.com>2018-07-17 22:01:01 +0800
commit83f3ba21b8543788b9405801da465fcda8f05f79 (patch)
tree954b61a4f679991df556d4e122ed41676d66088c /packages/typescript-typings
parent1de70e447458d4913a293dda04315ec53d9c7ffe (diff)
downloaddexon-sol-tools-83f3ba21b8543788b9405801da465fcda8f05f79.tar
dexon-sol-tools-83f3ba21b8543788b9405801da465fcda8f05f79.tar.gz
dexon-sol-tools-83f3ba21b8543788b9405801da465fcda8f05f79.tar.bz2
dexon-sol-tools-83f3ba21b8543788b9405801da465fcda8f05f79.tar.lz
dexon-sol-tools-83f3ba21b8543788b9405801da465fcda8f05f79.tar.xz
dexon-sol-tools-83f3ba21b8543788b9405801da465fcda8f05f79.tar.zst
dexon-sol-tools-83f3ba21b8543788b9405801da465fcda8f05f79.zip
Move type decl. to typescript-typings
Diffstat (limited to 'packages/typescript-typings')
-rw-r--r--packages/typescript-typings/types/ethereumjs-abi/index.d.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/typescript-typings/types/ethereumjs-abi/index.d.ts b/packages/typescript-typings/types/ethereumjs-abi/index.d.ts
new file mode 100644
index 000000000..af8630c2d
--- /dev/null
+++ b/packages/typescript-typings/types/ethereumjs-abi/index.d.ts
@@ -0,0 +1,7 @@
+declare module 'ethereumjs-util' {
+ 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[];
+}