diff options
author | Amir Bandeali <abandeali1@gmail.com> | 2019-01-23 05:37:14 +0800 |
---|---|---|
committer | Amir Bandeali <abandeali1@gmail.com> | 2019-01-23 05:37:14 +0800 |
commit | fe1ef930ad0febcf2b35f26da7d19123c881f741 (patch) | |
tree | 24721707fafda1243586968a7867be7f75611e03 /contracts/exchange-libs | |
parent | ab4d4a69ec105f1716cd705350441bb2d9ec4b87 (diff) | |
download | dexon-0x-contracts-fe1ef930ad0febcf2b35f26da7d19123c881f741.tar.gz dexon-0x-contracts-fe1ef930ad0febcf2b35f26da7d19123c881f741.tar.zst dexon-0x-contracts-fe1ef930ad0febcf2b35f26da7d19123c881f741.zip |
Update DEPLOYS and READMEs within each package
Diffstat (limited to 'contracts/exchange-libs')
-rw-r--r-- | contracts/exchange-libs/README.md | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/contracts/exchange-libs/README.md b/contracts/exchange-libs/README.md index cfa631679..696fb7f11 100644 --- a/contracts/exchange-libs/README.md +++ b/contracts/exchange-libs/README.md @@ -1,15 +1,14 @@ -## Contracts libs +## Exchange Libraries -Smart contracts libs used in the 0x protocol. +This package contains the implementations of various libraries and utilities used within the [`Exchange`](https://github.com/0xProject/0x-protocol-specification/blob/master/v2/v2-specification.md#exchange) contract. These libraries may be useful when creating external contracts that interact with the `Exchange` contract. Addresses of the deployed contracts can be found in the 0x [wiki](https://0xproject.com/wiki#Deployed-Addresses) or the [DEPLOYS](./DEPLOYS.json) file within this package. -## Usage +## Installation -Contracts can be found in the [contracts](./contracts) directory. The contents of this directory are broken down into the following subdirectories: +**Install** -- [libs](./contracts/protocol) - - This directory contains the libs. -- [test](./contracts/test) - - This directory contains mocks and other contracts that are used solely for testing contracts within the other directories. +```bash +npm install @0x/contracts-exchange-libs --save +``` ## Contributing @@ -38,13 +37,13 @@ yarn install 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-libs yarn build +PKG=@0x/contracts-exchange-libs yarn build ``` Or continuously rebuild on change: ```bash -PKG=@0x/contracts-libs yarn watch +PKG=@0x/contracts-exchange-libs yarn watch ``` ### Clean |