# @0x/types

> 0x types

Latest version **3.3.7** (published 2022-08-18) · Apache-2.0 license · 0 weekly downloads

## Install

```sh
npm install @0x/types
pnpm add @0x/types
yarn add @0x/types
bun add @0x/types
```

## Health

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

Positive: has types; no vulnerabilities.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 3.3.7 |
| Published | 2022-08-18 |
| First published | 2018-10-18 |
| Weekly downloads | 0 |
| License | Apache-2.0 |
| TypeScript types | bundled |
| Module format | CommonJS |
| Node | >=6.12 |
| Dependencies | 3 |
| Unpacked size | 92.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 98 |
| Maintainers | aeph4muh, idokleinman, jadetran, kyuc, henryzhu, tobernguyen, dex_tracker, dekz, amirbandeali, phil-ociraptor |

## Links

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

## Dependencies (3)

- [@types/node](https://npm.io/package/@types/node.md) 12.12.54
- [bignumber.js](https://npm.io/package/bignumber.js.md) ~9.0.2
- [ethereum-types](https://npm.io/package/ethereum-types.md) ^3.7.1

## Recent versions

- 3.3.7 (latest) — 2022-08-18
- 2.5.0-beta.3 (protocolV3) — 2019-12-02
- 3.3.6 — 2022-03-16
- 3.3.5 — 2022-02-26
- 3.3.4 — 2021-08-25
- 3.3.3 — 2021-04-26
- 3.3.2 — 2021-03-24
- 3.3.1 — 2020-12-02
- 3.3.0 — 2020-10-28
- 3.2.4 — 2020-10-21
- 3.2.3 — 2020-10-21
- 3.2.2 — 2020-10-20
- 3.2.1 — 2020-10-20
- 3.2.0 — 2020-07-15
- 3.1.3 — 2020-06-24
- … 27 more at https://npm.io/package/@0x/types/versions

## README

## @0x/types

TypeScript types shared across 0x projects and packages

## Installation

```bash
yarn add -D @0x/types
```

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"],
}
```

## Usage

```javascript
import { TransactionReceipt, TxData, TxDataPayable } from '@0x/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/types yarn build
```

Or continuously rebuild on change:

```bash
PKG=@0x/types yarn watch
```

### Clean

```bash
yarn clean
```

### Lint

```bash
yarn lint
```

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