aboutsummaryrefslogtreecommitdiffstats
path: root/packages/typescript-typings/types/ethereumjs-abi/index.d.ts
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-07-18 21:18:54 +0800
committerGitHub <noreply@github.com>2018-07-18 21:18:54 +0800
commite2fb49a8f871fd4b631bb01bb641c632b7c19435 (patch)
tree6a04c7686159cfa80435e47e08ceb08533c0dd77 /packages/typescript-typings/types/ethereumjs-abi/index.d.ts
parentf3241ff86a0d99f4291c5a5f4eaaa5ebe1736da0 (diff)
parentb9e7973a0f92661f2e469b748a162b0d3bb53624 (diff)
downloaddexon-sol-tools-e2fb49a8f871fd4b631bb01bb641c632b7c19435.tar
dexon-sol-tools-e2fb49a8f871fd4b631bb01bb641c632b7c19435.tar.gz
dexon-sol-tools-e2fb49a8f871fd4b631bb01bb641c632b7c19435.tar.bz2
dexon-sol-tools-e2fb49a8f871fd4b631bb01bb641c632b7c19435.tar.lz
dexon-sol-tools-e2fb49a8f871fd4b631bb01bb641c632b7c19435.tar.xz
dexon-sol-tools-e2fb49a8f871fd4b631bb01bb641c632b7c19435.tar.zst
dexon-sol-tools-e2fb49a8f871fd4b631bb01bb641c632b7c19435.zip
Merge pull request #884 from 0xProject/export-more-0x.js
Export missing V2 pieces from 0x.js
Diffstat (limited to 'packages/typescript-typings/types/ethereumjs-abi/index.d.ts')
-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..2d9fc9fcd
--- /dev/null
+++ b/packages/typescript-typings/types/ethereumjs-abi/index.d.ts
@@ -0,0 +1,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[];
+}