aboutsummaryrefslogtreecommitdiffstats
path: root/packages/types/README.md
diff options
context:
space:
mode:
authorBrandon Millman <brandon.millman@gmail.com>2017-12-20 01:55:48 +0800
committerBrandon Millman <brandon.millman@gmail.com>2017-12-20 01:55:48 +0800
commitca2bb60877dbefc2e4ed07f2a437cfc89538e133 (patch)
treed8929107f010284dba9ff6d7ac89cee8483a0c33 /packages/types/README.md
parent1316a2dd2a8971771f750d8a7f457212daad520b (diff)
downloaddexon-sol-tools-ca2bb60877dbefc2e4ed07f2a437cfc89538e133.tar
dexon-sol-tools-ca2bb60877dbefc2e4ed07f2a437cfc89538e133.tar.gz
dexon-sol-tools-ca2bb60877dbefc2e4ed07f2a437cfc89538e133.tar.bz2
dexon-sol-tools-ca2bb60877dbefc2e4ed07f2a437cfc89538e133.tar.lz
dexon-sol-tools-ca2bb60877dbefc2e4ed07f2a437cfc89538e133.tar.xz
dexon-sol-tools-ca2bb60877dbefc2e4ed07f2a437cfc89538e133.tar.zst
dexon-sol-tools-ca2bb60877dbefc2e4ed07f2a437cfc89538e133.zip
Update readmes for connect, kovan-facuets, types, and utils packages
Diffstat (limited to 'packages/types/README.md')
-rw-r--r--packages/types/README.md51
1 files changed, 48 insertions, 3 deletions
diff --git a/packages/types/README.md b/packages/types/README.md
index d4d48b1fe..3352128a3 100644
--- a/packages/types/README.md
+++ b/packages/types/README.md
@@ -1,10 +1,55 @@
-0x types
+@0xproject/types
------
-TS types shared across 0x projects and packages
+Typescript types shared across 0x projects and packages
-## Install
+## Installation
```bash
yarn add -D @0xproject/types
```
+
+## Usage
+
+```javascript
+import {
+ TransactionReceipt,
+ TxData,
+ TxDataPayable,
+} from '@0xproject/types';
+```
+
+
+## Contributing
+
+We strongly encourage our community members to help us make improvements and to determine the future direction of the protocol. To report bugs within this package, please create an issue in this repository.
+
+[CONTRIBUTING.md](../../CONTRIBUTING.md)
+
+### Install Dependencies
+
+If you don't have yarn workspaces enabled - enable them:
+```bash
+yarn config set workspaces-experimental true
+```
+
+Then install dependencies
+```bash
+yarn install
+```
+
+### Build
+
+```bash
+yarn build
+```
+
+### Lint
+
+```bash
+yarn lint
+```
+
+### Run Tests
+
+N/A