aboutsummaryrefslogtreecommitdiffstats
path: root/packages/typescript-typings
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-06-28 00:33:32 +0800
committerFabio Berger <me@fabioberger.com>2018-06-28 00:33:32 +0800
commit51211a21ba64d81c50eb4e13146b1246c8da46e0 (patch)
tree8d817008f262418b460de4619b9dadce8341f489 /packages/typescript-typings
parent133b6fe2409930252ee332b95a14e837ed9b84e4 (diff)
downloaddexon-0x-contracts-51211a21ba64d81c50eb4e13146b1246c8da46e0.tar
dexon-0x-contracts-51211a21ba64d81c50eb4e13146b1246c8da46e0.tar.gz
dexon-0x-contracts-51211a21ba64d81c50eb4e13146b1246c8da46e0.tar.bz2
dexon-0x-contracts-51211a21ba64d81c50eb4e13146b1246c8da46e0.tar.lz
dexon-0x-contracts-51211a21ba64d81c50eb4e13146b1246c8da46e0.tar.xz
dexon-0x-contracts-51211a21ba64d81c50eb4e13146b1246c8da46e0.tar.zst
dexon-0x-contracts-51211a21ba64d81c50eb4e13146b1246c8da46e0.zip
Improve `ganache-core`'s `GanacheOpts` type and require it instead of `any`
Diffstat (limited to 'packages/typescript-typings')
-rw-r--r--packages/typescript-typings/types/ganache-core/index.d.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/typescript-typings/types/ganache-core/index.d.ts b/packages/typescript-typings/types/ganache-core/index.d.ts
index 84635038f..c07e6a78e 100644
--- a/packages/typescript-typings/types/ganache-core/index.d.ts
+++ b/packages/typescript-typings/types/ganache-core/index.d.ts
@@ -7,7 +7,9 @@ declare module 'ganache-core' {
};
port?: number;
network_id?: number;
+ networkId?: number;
mnemonic?: string;
+ gasLimit?: number;
}
// tslint:disable-next-line:completed-docs
export function provider(opts: GanacheOpts): Provider;