diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-11-26 21:12:13 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-26 21:12:13 +0800 |
commit | 7b152176948c02e7bf1c27e377530fc3c6d9245a (patch) | |
tree | 065bfc9d0b9d193f20035a1849912cc25f8cff1a /packages/abi-gen-templates/README.md | |
parent | 8caded1d1d94d03aa49a2490b46eaebd8bf5ed74 (diff) | |
parent | 9ddd45e2c687280041cc0bb4cd7cb3c1a2c22767 (diff) | |
download | dexon-sol-tools-7b152176948c02e7bf1c27e377530fc3c6d9245a.tar dexon-sol-tools-7b152176948c02e7bf1c27e377530fc3c6d9245a.tar.gz dexon-sol-tools-7b152176948c02e7bf1c27e377530fc3c6d9245a.tar.bz2 dexon-sol-tools-7b152176948c02e7bf1c27e377530fc3c6d9245a.tar.lz dexon-sol-tools-7b152176948c02e7bf1c27e377530fc3c6d9245a.tar.xz dexon-sol-tools-7b152176948c02e7bf1c27e377530fc3c6d9245a.tar.zst dexon-sol-tools-7b152176948c02e7bf1c27e377530fc3c6d9245a.zip |
Merge pull request #1305 from 0xProject/feature/contract-templates
[@0x/contract-templates] Make contract-templates an npm package
Diffstat (limited to 'packages/abi-gen-templates/README.md')
-rw-r--r-- | packages/abi-gen-templates/README.md | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/packages/abi-gen-templates/README.md b/packages/abi-gen-templates/README.md new file mode 100644 index 000000000..c6cc3b1b3 --- /dev/null +++ b/packages/abi-gen-templates/README.md @@ -0,0 +1,17 @@ +These templates are used with [abi-gen](https://github.com/0xProject/0x-monorepo/tree/development/packages/abi-gen). + +To successfully compile the generated TypeScript contract wrappers, you must: + +* Install the packages on which the main contract template directly depends: `yarn add @0x/base-contract @0x/sol-compiler @0x/utils @0x/web3-wrapper ethereum-types ethers lodash` +* Install the packages on which the main contract template *in*directly depends: `yarn add @types/lodash` +* Ensure that your TypeScript configuration includes the following: + +``` +"compilerOptions": { + "lib": ["ES2015"], + "typeRoots": [ + "node_modules/@0x/typescript-typings/types", + "node_modules/@types" + ] +} +``` |