aboutsummaryrefslogtreecommitdiffstats
path: root/packages/subproviders/README.md
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2017-12-20 09:24:17 +0800
committerFabio Berger <me@fabioberger.com>2017-12-20 09:24:17 +0800
commit53798302da8dd42bd28817bc159d235a291497a5 (patch)
treeeac09f69ea86362aca27f47fe201e7bc23211e88 /packages/subproviders/README.md
parentb799a8a108646fc097595291b4697976f6a0d25c (diff)
downloaddexon-sol-tools-53798302da8dd42bd28817bc159d235a291497a5.tar
dexon-sol-tools-53798302da8dd42bd28817bc159d235a291497a5.tar.gz
dexon-sol-tools-53798302da8dd42bd28817bc159d235a291497a5.tar.bz2
dexon-sol-tools-53798302da8dd42bd28817bc159d235a291497a5.tar.lz
dexon-sol-tools-53798302da8dd42bd28817bc159d235a291497a5.tar.xz
dexon-sol-tools-53798302da8dd42bd28817bc159d235a291497a5.tar.zst
dexon-sol-tools-53798302da8dd42bd28817bc159d235a291497a5.zip
Improve subproviders readme
Diffstat (limited to 'packages/subproviders/README.md')
-rw-r--r--packages/subproviders/README.md58
1 files changed, 52 insertions, 6 deletions
diff --git a/packages/subproviders/README.md b/packages/subproviders/README.md
index 5fa31611a..73d61df42 100644
--- a/packages/subproviders/README.md
+++ b/packages/subproviders/README.md
@@ -1,15 +1,23 @@
-Subproviders
------------
+@0xproject/subproviders
+--------
-A few useful subproviders.
+A few useful web3 subproviders including a LedgerSubprovider useful for adding Ledger Nano S support.
## Installation
```
-npm install @0xproject/subproviders --save
+yarn add @0xproject/subproviders
```
-## Subproviders
+## Usage
+
+Simply import the subprovider you are interested in using:
+
+```javascript
+import {LedgerSubprovider} from '@0xproject/subproviders';
+```
+
+### Subproviders
#### Ledger Nano S subprovider
@@ -23,7 +31,39 @@ A subprovider which attempts to send an RPC call to a list of RPC endpoints sequ
A subprovider that relays all signing related requests to a particular provider (in our case the provider injected onto the web page), while sending all other requests to a different provider (perhaps your own backing Ethereum node or Infura).
-### Integration tests
+## Contributing
+
+We strongly encourage the community 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.
+
+Please read our [contribution guidelines](../../CONTRIBUTING.md) before getting started.
+
+### Install Dependencies
+
+```bash
+yarn install
+```
+
+### Build
+
+```bash
+yarn build
+```
+
+### Lint
+
+```bash
+yarn lint
+```
+
+### Run tests
+
+#### Unit tests
+
+```bash
+yarn run test:unit
+```
+
+#### Integration tests
In order to run the integration tests, make sure you have a Ledger Nano S available.
@@ -37,3 +77,9 @@ Then run:
```
yarn test:integration
```
+
+#### All tests
+
+```bash
+yarn run test:all
+```