aboutsummaryrefslogtreecommitdiffstats
path: root/contracts/examples/README.md
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-12-11 02:01:38 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2018-12-11 02:01:38 +0800
commitb88ff0a19ff7695086107cbcffe980dc4ad84e10 (patch)
treef47cd93205d0e6c695edf1d984ed53f38df6525c /contracts/examples/README.md
parenta365ab11d24ff8365b7d69a948b1b5211b772f5e (diff)
downloaddexon-sol-tools-b88ff0a19ff7695086107cbcffe980dc4ad84e10.tar
dexon-sol-tools-b88ff0a19ff7695086107cbcffe980dc4ad84e10.tar.gz
dexon-sol-tools-b88ff0a19ff7695086107cbcffe980dc4ad84e10.tar.bz2
dexon-sol-tools-b88ff0a19ff7695086107cbcffe980dc4ad84e10.tar.lz
dexon-sol-tools-b88ff0a19ff7695086107cbcffe980dc4ad84e10.tar.xz
dexon-sol-tools-b88ff0a19ff7695086107cbcffe980dc4ad84e10.tar.zst
dexon-sol-tools-b88ff0a19ff7695086107cbcffe980dc4ad84e10.zip
Refactor out examples
Diffstat (limited to 'contracts/examples/README.md')
-rw-r--r--contracts/examples/README.md56
1 files changed, 56 insertions, 0 deletions
diff --git a/contracts/examples/README.md b/contracts/examples/README.md
new file mode 100644
index 000000000..1c603bfcf
--- /dev/null
+++ b/contracts/examples/README.md
@@ -0,0 +1,56 @@
+## Contract examples
+
+Smart contract examples of the 0x protocol.
+
+## Usage
+
+Contracts can be found in the [contracts](./contracts) directory.
+This package contains example implementations of contracts that interact with the protocol but are _not_ intended for use in production. Examples include [filter](https://github.com/0xProject/0x-protocol-specification/blob/master/v2/v2-specification.md#filter-contracts) contracts, a [Wallet](https://github.com/0xProject/0x-protocol-specification/blob/master/v2/v2-specification.md#wallet) contract, and a [Validator](https://github.com/0xProject/0x-protocol-specification/blob/master/v2/v2-specification.md#validator) contract, among others.
+
+## Contributing
+
+We strongly recommend that the community help us make improvements and determine the future direction of the protocol. To report bugs within this package, please create an issue in this repository.
+
+For proposals regarding the 0x protocol's smart contract architecture, message format, or additional functionality, go to the [0x Improvement Proposals (ZEIPs)](https://github.com/0xProject/ZEIPs) repository and follow the contribution guidelines provided therein.
+
+Please read our [contribution guidelines](../../CONTRIBUTING.md) before getting started.
+
+### Install Dependencies
+
+If you don't have yarn workspaces enabled (Yarn < v1.0) - enable them:
+
+```bash
+yarn config set workspaces-experimental true
+```
+
+Then install dependencies
+
+```bash
+yarn install
+```
+
+### Build
+
+To build this package and all other monorepo packages that it depends on, run the following from the monorepo root directory:
+
+```bash
+PKG=@0x/contracts-examples yarn build
+```
+
+Or continuously rebuild on change:
+
+```bash
+PKG=@0x/contracts-examples yarn watch
+```
+
+### Clean
+
+```bash
+yarn clean
+```
+
+### Lint
+
+```bash
+yarn lint
+```