aboutsummaryrefslogtreecommitdiffstats
path: root/packages/abi-gen/README.md
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-12-06 03:02:27 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-12-06 03:34:59 +0800
commitc64ec92fb23fd130d0c54a4d42147bb468e434d9 (patch)
tree2be1ce0e080d5392cc4ab33d244528171479c345 /packages/abi-gen/README.md
parent3880f2b3cc03ef138cb804f6eb09ed6bb298f111 (diff)
downloaddexon-sol-tools-c64ec92fb23fd130d0c54a4d42147bb468e434d9.tar
dexon-sol-tools-c64ec92fb23fd130d0c54a4d42147bb468e434d9.tar.gz
dexon-sol-tools-c64ec92fb23fd130d0c54a4d42147bb468e434d9.tar.bz2
dexon-sol-tools-c64ec92fb23fd130d0c54a4d42147bb468e434d9.tar.lz
dexon-sol-tools-c64ec92fb23fd130d0c54a4d42147bb468e434d9.tar.xz
dexon-sol-tools-c64ec92fb23fd130d0c54a4d42147bb468e434d9.tar.zst
dexon-sol-tools-c64ec92fb23fd130d0c54a4d42147bb468e434d9.zip
Address feedback
Diffstat (limited to 'packages/abi-gen/README.md')
-rw-r--r--packages/abi-gen/README.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/packages/abi-gen/README.md b/packages/abi-gen/README.md
index 40f056a52..f1f8bd08f 100644
--- a/packages/abi-gen/README.md
+++ b/packages/abi-gen/README.md
@@ -1,10 +1,10 @@
-# Typed contracts
+# ABI Gen
This package allows you to generate contract wrappers in any language from ABI files.
It's heavily inspired by [Geth abigen](https://github.com/ethereum/go-ethereum/wiki/Native-DApps:-Go-bindings-to-Ethereum-contracts) but takes a different approach.
You can write your custom handlebars templates which will allow you to seamlessly integrate the generated code into your existing codebase with existing conventions.
-For the example of the generated [wrapper files](https://github.com/0xProject/0x.js/tree/development/packages/0x.js/src/contract_wrappers/generated) check out 0x.js.
+For an example of the generated [wrapper files](https://github.com/0xProject/0x.js/tree/development/packages/0x.js/src/contract_wrappers/generated) check out 0x.js.
[Here](https://github.com/0xProject/0x.js/tree/development/packages/abi-gen-templates) are the templates used to generate those files.
## Instalation
@@ -22,19 +22,19 @@ Options:
```
## ABI files
You're required to pass a [glob](https://en.wikipedia.org/wiki/Glob_(programming) template where your abi files are located.
-TL;DR - here is the exmaple from 0x.js.
+TL;DR - here is the example from 0x.js.
`--abiGlob 'src/artifacts/@(Exchange|Token|TokenTransferProxy|EtherToken|TokenRegistry).json`
We could've just used `--abiGlob 'src/artifacts/*.json` but we wanted to exclude some of the abi files.
-The abi file should be either a truffle contract artifact (a JSON object with the abi key) or a JSON abi array.
+The abi file should be either a [Truffle](http://truffleframework.com/) contract artifact (a JSON object with an abi key) or a JSON abi array.
## How to write custom templates?
-The best way to get started is to copy [0x.js templates](https://github.com/0xProject/0x.js/tree/development/packages/abi-gen-templates) and start playing with them adjusting them for your needs.
+The best way to get started is to copy [0x.js templates](https://github.com/0xProject/0x.js/tree/development/packages/abi-gen-templates) and start adjusting them for your needs.
We use [handlebars](handlebarsjs.com) template engine under the hood.
-You need to have a master template called `contract.mustache`. it will be used to generate each contract wrapper. Although - you don't need and probably shouldn't write all your logic in a single template file. You can write [partial templates](http://handlebarsjs.com/partials.html) and as long as they are within partials folder - they will be registered and available.
+You need to have a master template called `contract.mustache`. it will be used to generate each contract wrapper. Although - you don't need and probably shouldn't write all your logic in a single template file. You can write [partial templates](http://handlebarsjs.com/partials.html) and as long as they are within a partials folder - they will be registered and available.
## Which data/context do I get in my templates?
-For now you don't get much on top of methods abi and a contract name cause if was enough for our use-case, but if you need something else - create a PR.
+For now you don't get much on top of methods abi and a contract name because it was enough for our use-case, but if you need something else - create a PR.
[Type definition](https://github.com/0xProject/0x.js/tree/development/packages/abi-gen/src/types.ts) of what we pass to a render method.
## Output files
-Output files will be generated within an output folder with names converted to camel case and taken from abi files names. If you already have some files in that folder they will be overwritten.
+Output files will be generated within an output folder with names converted to camel case and taken from abi file names. If you already have some files in that folder they will be overwritten.