diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-08-25 18:00:02 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-08-29 16:01:13 +0800 |
commit | a6a16017997fbe53ac709f2f0d874e348da35621 (patch) | |
tree | 9c0bf98ddef5e9f073c7e5c795fc79eb2b9d3e35 /src/globals.d.ts | |
parent | a8fd3f30cf87660f08fa7b1c249606b7f8872ba1 (diff) | |
download | dexon-sol-tools-a6a16017997fbe53ac709f2f0d874e348da35621.tar dexon-sol-tools-a6a16017997fbe53ac709f2f0d874e348da35621.tar.gz dexon-sol-tools-a6a16017997fbe53ac709f2f0d874e348da35621.tar.bz2 dexon-sol-tools-a6a16017997fbe53ac709f2f0d874e348da35621.tar.lz dexon-sol-tools-a6a16017997fbe53ac709f2f0d874e348da35621.tar.xz dexon-sol-tools-a6a16017997fbe53ac709f2f0d874e348da35621.tar.zst dexon-sol-tools-a6a16017997fbe53ac709f2f0d874e348da35621.zip |
Allow user to specify the gas price
Diffstat (limited to 'src/globals.d.ts')
-rw-r--r-- | src/globals.d.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/globals.d.ts b/src/globals.d.ts index 9879a57ad..1ef70d679 100644 --- a/src/globals.d.ts +++ b/src/globals.d.ts @@ -39,6 +39,8 @@ declare interface ContractInstance { declare interface ContractFactory { setProvider: (providerObj: any) => void; deployed: () => ContractInstance; + // Both any's are Web3.CallData, but I was unable to import it in this file + defaults: (config: any) => any; at: (address: string) => ContractInstance; } declare interface Artifact { |