# @0x/web3-wrapper

> Wraps around web3 and gives a nicer interface

Latest version **8.0.1** (published 2023-04-07) · Apache-2.0 license · 0 weekly downloads

## Install

```sh
npm install @0x/web3-wrapper
pnpm add @0x/web3-wrapper
yarn add @0x/web3-wrapper
bun add @0x/web3-wrapper
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 8.0.1 |
| Published | 2023-04-07 |
| First published | 2018-10-18 |
| Weekly downloads | 0 |
| License | Apache-2.0 |
| TypeScript types | bundled |
| Module format | CommonJS |
| Node | >=6.12 |
| Dependencies | 9 |
| Unpacked size | 148.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 98 |
| Maintainers | rhinodavid, mwelche, savdont, eobbad, aeph4muh, idokleinman, jadetran, kyuc, henryzhu, tobernguyen, dex_tracker, dekz, amirbandeali, phil-ociraptor |

## Links

- npm: https://www.npmjs.com/package/@0x/web3-wrapper
- Repository: https://github.com/0xProject/tools
- Homepage: https://github.com/0xProject/tools/tree/main/web3-wrapper
- Issues: https://github.com/0xProject/tools/issues
- npm.io page: https://npm.io/package/@0x/web3-wrapper

## Dependencies (9)

- [ethers](https://npm.io/package/ethers.md) ~4.0.4
- [lodash](https://npm.io/package/lodash.md) ^4.17.21
- [@0x/utils](https://npm.io/package/@0x/utils.md) ^7.0.0
- [@0x/assert](https://npm.io/package/@0x/assert.md) ^3.0.36
- [@types/node](https://npm.io/package/@types/node.md) 12.12.54
- [ethereum-types](https://npm.io/package/ethereum-types.md) ^3.7.1
- [ethereumjs-util](https://npm.io/package/ethereumjs-util.md) ^7.1.5
- [@0x/json-schemas](https://npm.io/package/@0x/json-schemas.md) ^6.4.6
- [@0x/typescript-typings](https://npm.io/package/@0x/typescript-typings.md) ^5.3.2

## Recent versions

- 8.0.1 (latest) — 2023-04-07
- 6.1.0-beta.3 (protocolV3) — 2019-12-02
- 8.0.0 — 2022-08-18
- 7.6.5 — 2022-03-16
- 7.6.4 — 2022-03-16
- 7.6.3 — 2022-02-26
- 7.6.2 — 2022-01-19
- 7.6.1 — 2021-09-23
- 7.6.0 — 2021-08-25
- 7.5.4 — 2021-06-28
- 7.5.3 — 2021-04-28
- 7.5.2 — 2021-04-26
- 7.5.1 — 2021-04-26
- 7.5.0 — 2021-04-26
- 7.4.3 — 2021-04-06
- … 59 more at https://npm.io/package/@0x/web3-wrapper/versions

## README

## @0x/web3-wrapper

Web3-wrapper is a JSON-RPC client for Ethereum nodes. It is a type-safe alternative to [Web3.js](https://github.com/ethereum/web3.js/) written in TypeScript.

### Read the [Documentation](https://github.com/0xProject/0x-monorepo/blob/development/packages/web3-wrapper/docs/reference.mdx).

## Installation

```bash
yarn add @0x/web3-wrapper
```

If your project is in [TypeScript](https://www.typescriptlang.org/), add the following to your `tsconfig.json`:

```json
"compilerOptions": {
    "typeRoots": ["node_modules/@0x/typescript-typings/types", "node_modules/@types"],
}
```

## Contributing

We welcome improvements and fixes from the wider community! 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

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/web3-wrapper yarn build
```

Or continuously rebuild on change:

```bash
PKG=@0x/web3-wrapper yarn watch
```

### Clean

```bash
yarn clean
```

### Lint

```bash
yarn lint
```

### Run Tests

```bash
yarn test
```

---
_Source: https://npm.io/package/@0x/web3-wrapper · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
