# @0x/contract-addresses

> Used to get known addresses of deployed 0x contracts

Latest version **8.13.0** (published 2023-11-16) · Apache-2.0 license · 0 weekly downloads

## Install

```sh
npm install @0x/contract-addresses
pnpm add @0x/contract-addresses
yarn add @0x/contract-addresses
bun add @0x/contract-addresses
```

## Health

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

Positive: no vulnerabilities; high maintenance score.

Warnings: low downloads; no types; no esm support.

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 8.13.0 |
| Published | 2023-11-16 |
| First published | 2018-10-18 |
| Weekly downloads | 0 |
| License | Apache-2.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=6.12 |
| Dependencies | 0 |
| Unpacked size | 98.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 404 |
| Maintainers | aeph4muh, rhinodavid, mwelche, savdont, kyuc, henryzhu, tobernguyen, dekz, amirbandeali, phil-ociraptor |

## Links

- npm: https://www.npmjs.com/package/@0x/contract-addresses
- Repository: https://github.com/0xProject/protocol
- Homepage: https://github.com/0xProject/protocol/tree/main/packages/contract-addresses
- Issues: https://github.com/0xProject/protocol/issues
- npm.io page: https://npm.io/package/@0x/contract-addresses

## Recent versions

- 8.13.0 (latest) — 2023-11-16
- 3.3.0-beta.5 (protocolV3) — 2019-12-02
- 8.12.0 — 2023-08-29
- 8.11.0 — 2023-08-18
- 8.10.0 — 2023-08-09
- 8.9.0 — 2023-07-21
- 8.8.0 — 2023-07-19
- 8.7.0 — 2023-05-10
- 8.6.0 — 2023-05-01
- 8.5.0 — 2023-04-20
- 8.4.0 — 2023-04-17
- 8.2.0 — 2023-03-10
- 8.1.0 — 2023-03-01
- 8.0.3 — 2023-02-01
- 8.0.2 — 2023-01-30
- … 93 more at https://npm.io/package/@0x/contract-addresses/versions

## README

## @0x/contract-addresses

A tiny utility library for getting known deployed contract addresses for a
particular network.

## Installation

```bash
yarn add @0x/contract-addresses
```

**Import**

```typescript
import { getContractAddressesForChainOrThrow } from '@0x/contract-addresses';
```

or

```javascript
var getContractAddressesForChainOrThrow = require('@0x/contract-addresses').getContractAddressesForChainOrThrow;
```

## 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](../../.github/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/contract-addresses yarn build
```

### Clean

```bash
yarn clean
```

### Lint

```bash
yarn lint
```

### Run Tests

```bash
yarn test
```

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