# @ethersproject/json-wallets

> Wallet management utilities for KeyStore and Crowdsale JSON wallets.

Latest version **5.8.0** (published 2025-02-26) · MIT license · 0 weekly downloads

## Install

```sh
npm install @ethersproject/json-wallets
pnpm add @ethersproject/json-wallets
yarn add @ethersproject/json-wallets
bun add @ethersproject/json-wallets
```

## Health

**Score 50/100 (C)** — status: stable.

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

Warnings: low downloads.

Negative: stale.

## Facts

| | |
|---|---|
| Version | 5.8.0 |
| Published | 2025-02-26 |
| First published | 2019-03-20 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 13 |
| Unpacked size | 122.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 8715 |
| Author | Richard Moore |
| Maintainers | ricmoo |
| Keywords | Ethereum, ethers |

## Links

- npm: https://www.npmjs.com/package/@ethersproject/json-wallets
- Repository: https://github.com/ethers-io/ethers.js
- Homepage: https://github.com/ethers-io/ethers.js#readme
- Issues: https://github.com/ethers-io/ethers.js/issues
- Funding: https://gitcoin.co/grants/13/ethersjs-complete-simple-and-tiny-2
- npm.io page: https://npm.io/package/@ethersproject/json-wallets

## Dependencies (13)

- [aes-js](https://npm.io/package/aes-js.md) 3.0.0
- [scrypt-js](https://npm.io/package/scrypt-js.md) 3.0.1
- [@ethersproject/bytes](https://npm.io/package/@ethersproject/bytes.md) ^5.8.0
- [@ethersproject/hdnode](https://npm.io/package/@ethersproject/hdnode.md) ^5.8.0
- [@ethersproject/logger](https://npm.io/package/@ethersproject/logger.md) ^5.8.0
- [@ethersproject/pbkdf2](https://npm.io/package/@ethersproject/pbkdf2.md) ^5.8.0
- [@ethersproject/random](https://npm.io/package/@ethersproject/random.md) ^5.8.0
- [@ethersproject/address](https://npm.io/package/@ethersproject/address.md) ^5.8.0
- [@ethersproject/strings](https://npm.io/package/@ethersproject/strings.md) ^5.8.0
- [@ethersproject/keccak256](https://npm.io/package/@ethersproject/keccak256.md) ^5.8.0
- [@ethersproject/properties](https://npm.io/package/@ethersproject/properties.md) ^5.8.0
- [@ethersproject/transactions](https://npm.io/package/@ethersproject/transactions.md) ^5.8.0
- [@ethersproject/abstract-signer](https://npm.io/package/@ethersproject/abstract-signer.md) ^5.8.0

## Recent versions

- 5.8.0 (latest) — 2025-02-26
- 5.7.0 — 2022-08-19
- 5.6.1 — 2022-05-24
- 5.6.0 — 2022-03-10
- 5.5.0 — 2021-10-20
- 5.4.0 — 2021-06-26
- 5.3.0 — 2021-06-01
- 5.2.0 — 2021-05-20
- 5.1.0 — 2021-03-30
- 5.0.12 — 2021-03-08
- 5.0.11 — 2021-02-01
- 5.0.10 — 2021-01-08
- 5.0.9 — 2020-11-24
- 5.0.8 — 2020-11-18
- 5.0.7 — 2020-10-03
- … 27 more at https://npm.io/package/@ethersproject/json-wallets/versions

## README

Secret Storage JSON Wallet Utilities
====================================

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

It is responsible for encoding, decoding, encrypting and decrypting JSON wallet
formats.

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


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 {

    isCrowdsaleWallet,
    decryptCrowdsale,

    isKeystoreWallet,
    decryptKeystore,
    decryptKeystoreSync,
    encryptKeystore,

    getJsonWalletAddress,

    decryptJsonWallet,
    decryptJsonWalletSync,

    // Types

    ProgressCallback,

    EncryptOptions

} = require("@ethersproject/json-wallets");
```


License
-------

MIT License

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