aboutsummaryrefslogtreecommitdiffstats
path: root/packages/abi-gen-wrappers/README.md
diff options
context:
space:
mode:
authorJacob Evans <jacob@dekz.net>2018-10-18 19:03:47 +0800
committerJacob Evans <jacob@dekz.net>2018-10-18 19:30:09 +0800
commit2735fb4fa6901dc528aea5f642512c161b842efd (patch)
treee2fe194b2f8b627f89589c332c2d894027682062 /packages/abi-gen-wrappers/README.md
parent88c929a408d17d8d1f4604187f8b1b04e94dab73 (diff)
downloaddexon-sol-tools-2735fb4fa6901dc528aea5f642512c161b842efd.tar
dexon-sol-tools-2735fb4fa6901dc528aea5f642512c161b842efd.tar.gz
dexon-sol-tools-2735fb4fa6901dc528aea5f642512c161b842efd.tar.bz2
dexon-sol-tools-2735fb4fa6901dc528aea5f642512c161b842efd.tar.lz
dexon-sol-tools-2735fb4fa6901dc528aea5f642512c161b842efd.tar.xz
dexon-sol-tools-2735fb4fa6901dc528aea5f642512c161b842efd.tar.zst
dexon-sol-tools-2735fb4fa6901dc528aea5f642512c161b842efd.zip
chore: change README.md from 0xproject to 0x
Diffstat (limited to 'packages/abi-gen-wrappers/README.md')
-rw-r--r--packages/abi-gen-wrappers/README.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/packages/abi-gen-wrappers/README.md b/packages/abi-gen-wrappers/README.md
index f904f9af8..bcf58ae06 100644
--- a/packages/abi-gen-wrappers/README.md
+++ b/packages/abi-gen-wrappers/README.md
@@ -1,29 +1,29 @@
-## @0xproject/abi-gen-wrappers
+## @0x/abi-gen-wrappers
-Low-level 0x smart contract wrappers generated using @0xproject/abi-gen. These
+Low-level 0x smart contract wrappers generated using @0x/abi-gen. These
low-level wrappers are imported by other packages in the 0x monorepo and
application developers are not expected to import this package directly.
You may also be interested in the
-[@0xproject/contract-wrappers](../contract-wrappers/README.md) package which
+[@0x/contract-wrappers](../contract-wrappers/README.md) package which
includes some higher-level features.
## Installation
```bash
-yarn add @0xproject/abi-gen-wrappers
+yarn add @0x/abi-gen-wrappers
```
**Import**
```typescript
-import * as wrappers from '@0xproject/abi-gen-wrappers';
+import * as wrappers from '@0x/abi-gen-wrappers';
```
or
```javascript
-var wrappers = require('@0xproject/abi-gen-wrappers');
+var wrappers = require('@0x/abi-gen-wrappers');
```
## Contributing
@@ -51,7 +51,7 @@ 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=@0xproject/abi-gen-wrappers yarn build
+PKG=@0x/abi-gen-wrappers yarn build
```
### Clean