# ethersv5

> Utilities and Classes for parsing, formatting and managing Ethereum ABIs.

Latest version **1.0.0** (published 2021-10-29) · MIT license · 0 weekly downloads

## Install

```sh
npm install ethersv5
pnpm add ethersv5
yarn add ethersv5
bun add ethersv5
```

## Health

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

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

Warnings: low downloads.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2021-10-29 |
| First published | 2021-10-29 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 9 |
| Unpacked size | 483.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | The Contributors |
| Maintainers | 0xjanitor |
| Keywords | Ethereum, ethers |

## Links

- npm: https://www.npmjs.com/package/ethersv5
- Repository: https://github.com/sambacha/ethersv5
- Homepage: https://github.com/sambacha/ethersv5#readme
- Issues: https://github.com/sambacha/ethersv5/issues
- npm.io page: https://npm.io/package/ethersv5

## Dependencies (9)

- [@ethersproject/hash](https://npm.io/package/@ethersproject/hash.md) ^5.5.0
- [@ethersproject/bytes](https://npm.io/package/@ethersproject/bytes.md) ^5.5.0
- [@ethersproject/logger](https://npm.io/package/@ethersproject/logger.md) ^5.5.0
- [@ethersproject/address](https://npm.io/package/@ethersproject/address.md) ^5.5.0
- [@ethersproject/strings](https://npm.io/package/@ethersproject/strings.md) ^5.5.0
- [@ethersproject/bignumber](https://npm.io/package/@ethersproject/bignumber.md) ^5.5.0
- [@ethersproject/constants](https://npm.io/package/@ethersproject/constants.md) ^5.5.0
- [@ethersproject/keccak256](https://npm.io/package/@ethersproject/keccak256.md) ^5.5.0
- [@ethersproject/properties](https://npm.io/package/@ethersproject/properties.md) ^5.5.0

## Recent versions

- 1.0.0 (latest) — 2021-10-29

## README

Ethereum ABI Coder
==================

This sub-module is part of the [ethers project](https://github.com/ethers-io/ethers.js).

It is responsible for encoding and decoding the Application Binary Interface (ABI)
used by most smart contracts to interoperate between other smart contracts and clients.

For more information, see the [documentation](https://docs.ethers.io/v5/api/utils/abi/).

Importing
---------

Most users will prefer to use the [umbrella package](https://www.npmjs.com/package/ethers),
but for those with more specific needs, individual components can be imported.

```javascript
const {

    ConstructorFragment,
    EventFragment,
    Fragment,
    FunctionFragment,
    ParamType,
    FormatTypes,

    AbiCoder,
    defaultAbiCoder,

    Interface,
    Indexed,

    /////////////////////////
    // Types

    CoerceFunc,
    JsonFragment,
    JsonFragmentType,

    Result,
    checkResultErrors,

    LogDescription,
    TransactionDescription

} = require("@ethersproject/abi");
```

License
-------

MIT License

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