aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/README.md
diff options
context:
space:
mode:
authorAmir Bandeali <abandeali1@gmail.com>2017-11-30 23:34:48 +0800
committerAmir Bandeali <abandeali1@gmail.com>2017-11-30 23:34:48 +0800
commitcec0b2afe3f85d32349b9f09b5632f2e0d37e88d (patch)
treefa26c4d915372c9c85235c9f8d069a92c73b7167 /packages/contracts/README.md
parente85a69655c29a04b7f1a3506c5ecb55433425f7f (diff)
downloaddexon-sol-tools-cec0b2afe3f85d32349b9f09b5632f2e0d37e88d.tar
dexon-sol-tools-cec0b2afe3f85d32349b9f09b5632f2e0d37e88d.tar.gz
dexon-sol-tools-cec0b2afe3f85d32349b9f09b5632f2e0d37e88d.tar.bz2
dexon-sol-tools-cec0b2afe3f85d32349b9f09b5632f2e0d37e88d.tar.lz
dexon-sol-tools-cec0b2afe3f85d32349b9f09b5632f2e0d37e88d.tar.xz
dexon-sol-tools-cec0b2afe3f85d32349b9f09b5632f2e0d37e88d.tar.zst
dexon-sol-tools-cec0b2afe3f85d32349b9f09b5632f2e0d37e88d.zip
Add README to contracts package
Diffstat (limited to 'packages/contracts/README.md')
-rw-r--r--packages/contracts/README.md51
1 files changed, 51 insertions, 0 deletions
diff --git a/packages/contracts/README.md b/packages/contracts/README.md
new file mode 100644
index 000000000..1aa62b25d
--- /dev/null
+++ b/packages/contracts/README.md
@@ -0,0 +1,51 @@
+Contracts
+-----
+
+## Useful 0x Wiki Articles
+
+* [Architecture](https://0xproject.com/wiki#Architecture)
+* [Contract Interactions](https://0xproject.com/wiki#Contract-Interactions)
+* [Contract deployed addresses](https://0xproject.com/wiki#Deployed-Addresses)
+* [0x Protocol Message Format](https://0xproject.com/wiki#Message-Format)
+* [Bug Bounty Program](https://0xproject.com/wiki#Bug-Bounty)
+
+## Setup
+
+### Installing Dependencies
+
+Install [Node v6.9.1](https://nodejs.org/en/download/releases/)
+
+Install [yarn](https://yarnpkg.com/lang/en/docs/install/) in order to install the project dependencies more deterministically.
+
+Install project dependencies:
+
+```
+yarn
+```
+
+### Running Tests
+
+Start Testrpc
+
+```
+yarn testrpc
+```
+
+Run tests
+
+```
+yarn test
+```
+
+## Contributing
+
+0x protocol is intended to serve as an open technical standard for EVM blockchains and we strongly encourage our community members to help us make improvements and to determine the future direction of the protocol. To report bugs within the 0x smart contracts or unit tests, please create an issue in this repository.
+
+### ZEIPs
+Significant changes to 0x protocol's smart contracts, architecture, message format or functionality should be proposed in the [0x Improvement Proposals (ZEIPs)](https://github.com/0xProject/ZEIPs) repository. Follow the contribution guidelines provided therein.
+
+### Coding conventions
+
+We use a custom set of [TSLint](https://palantir.github.io/tslint/) rules to enforce our coding conventions.
+
+In order to see style violation errors, install a tslinter for your text editor. e.g Atom's [atom-typescript](https://atom.io/packages/atom-typescript).