aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contract_templates
diff options
context:
space:
mode:
authorF. Eugene Aumson <gene@aumson.org>2018-06-14 11:09:36 +0800
committerF. Eugene Aumson <gene@aumson.org>2018-06-15 01:51:10 +0800
commit4a2e4d2b55c89c91cebf434570feee91ccc449fa (patch)
treef48817229d2d4959988090caf51dd6cd8881a4fd /packages/contract_templates
parent0e354e5ea1f9951088331a310999bf87c8f8f4b3 (diff)
downloaddexon-0x-contracts-4a2e4d2b55c89c91cebf434570feee91ccc449fa.tar
dexon-0x-contracts-4a2e4d2b55c89c91cebf434570feee91ccc449fa.tar.gz
dexon-0x-contracts-4a2e4d2b55c89c91cebf434570feee91ccc449fa.tar.bz2
dexon-0x-contracts-4a2e4d2b55c89c91cebf434570feee91ccc449fa.tar.lz
dexon-0x-contracts-4a2e4d2b55c89c91cebf434570feee91ccc449fa.tar.xz
dexon-0x-contracts-4a2e4d2b55c89c91cebf434570feee91ccc449fa.tar.zst
dexon-0x-contracts-4a2e4d2b55c89c91cebf434570feee91ccc449fa.zip
Document contract_templates
Diffstat (limited to 'packages/contract_templates')
-rw-r--r--packages/contract_templates/README.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/packages/contract_templates/README.md b/packages/contract_templates/README.md
new file mode 100644
index 000000000..39aa2d2c0
--- /dev/null
+++ b/packages/contract_templates/README.md
@@ -0,0 +1,15 @@
+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 @0xproject/base-contract @0xproject/sol-compiler @0xproject/types @0xproject/utils @0xproject/web3-wrapper 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/@0xproject/typescript-typings/types",
+ "node_modules/@types"
+ ]
+}
+```