diff options
author | Fabio Berger <me@fabioberger.com> | 2017-12-06 06:18:36 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-12-06 06:18:36 +0800 |
commit | 08168c6e7d52711aeb46e27444ba26970e16e244 (patch) | |
tree | 40a006de279221009d0ee05d73bfbb74f0a9ea91 /packages/contracts/globals.d.ts | |
parent | b5030df4e3afe17b4e652b438d655edda79c5f54 (diff) | |
parent | 4441d76725af4e83f90eeb373983b600b6903e8e (diff) | |
download | dexon-sol-tools-08168c6e7d52711aeb46e27444ba26970e16e244.tar dexon-sol-tools-08168c6e7d52711aeb46e27444ba26970e16e244.tar.gz dexon-sol-tools-08168c6e7d52711aeb46e27444ba26970e16e244.tar.bz2 dexon-sol-tools-08168c6e7d52711aeb46e27444ba26970e16e244.tar.lz dexon-sol-tools-08168c6e7d52711aeb46e27444ba26970e16e244.tar.xz dexon-sol-tools-08168c6e7d52711aeb46e27444ba26970e16e244.tar.zst dexon-sol-tools-08168c6e7d52711aeb46e27444ba26970e16e244.zip |
Merge branch 'development' into feature/addSubproviders
* development: (50 commits)
Add PR number to changelog
Address feedback
Add requestId to subscription messages and update json-schemas
Remove isomorphic-fetch types from contracts package
Update README
Regenerate files
Make it private
Change package name
Update README
Make fileExtension configurable
Rename abi-gen to typed-contracts
Add docs for typed-contracts
Remove TODOs
Introduce separate ContextData type and rework it
Check ABI is defined
Introduce a const for 'contract.mustache'
Improve error message
Reuse util
Fix a typo
Introduce a const for 'function'
...
# Conflicts:
# yarn.lock
Diffstat (limited to 'packages/contracts/globals.d.ts')
-rw-r--r-- | packages/contracts/globals.d.ts | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/packages/contracts/globals.d.ts b/packages/contracts/globals.d.ts new file mode 100644 index 000000000..8bc5b5c3f --- /dev/null +++ b/packages/contracts/globals.d.ts @@ -0,0 +1,42 @@ +declare module 'bn.js'; +declare module 'ethereumjs-abi'; +declare module 'chai-bignumber'; +declare module 'dirty-chai'; +declare module 'yargs'; + +// HACK: In order to merge the bignumber declaration added by chai-bignumber to the chai Assertion +// interface we must use `namespace` as the Chai definitelyTyped definition does. Since we otherwise +// disallow `namespace`, we disable tslint for the following. +/* tslint:disable */ +declare namespace Chai { + interface Assertion { + bignumber: Assertion; + } +} +/* tslint:enable */ + +declare module '*.json' { + const json: any; + /* tslint:disable */ + export default json; + /* tslint:enable */ +} + +declare module 'solc' { + export function compile(sources: any, optimizerEnabled: number, findImports: (importPath: string) => any): any; + export function setupMethods(solcBin: any): any; +} + +declare module 'es6-promisify' { + function promisify(original: any, settings?: any): ((...arg: any[]) => Promise<any>); + export = promisify; +} + +declare module 'web3-eth-abi' { + export function encodeParameters(typesArray: string[], parameters: any[]): string; +} + +// Truffle injects the following into the global scope +declare var artifacts: any; +declare var contract: any; + |