# @near-wallet-selector/wallet-utils

> Wallet utils package for NEAR Wallet Selector.

Latest version **10.1.4** (published 2025-12-04) · (MIT OR Apache-2.0) license · 0 weekly downloads

## Install

```sh
npm install @near-wallet-selector/wallet-utils
pnpm add @near-wallet-selector/wallet-utils
yarn add @near-wallet-selector/wallet-utils
bun add @near-wallet-selector/wallet-utils
```

## Health

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

Positive: has types; esm support; no vulnerabilities.

Warnings: low downloads.

## Facts

| | |
|---|---|
| Version | 10.1.4 |
| Published | 2025-12-04 |
| First published | 2022-05-24 |
| Weekly downloads | 0 |
| License | (MIT OR Apache-2.0) |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 8 |
| Unpacked size | 294.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 180 |
| Maintainers | ewiner, frol, roman009 |
| Keywords | near, blockchain, wallets, dapps, near-protocol, near-blockchain, wallet selector |

## Links

- npm: https://www.npmjs.com/package/@near-wallet-selector/wallet-utils
- Repository: https://github.com/near/wallet-selector
- Homepage: https://github.com/near/wallet-selector/tree/main/packages/wallet-utils
- Issues: https://github.com/near/wallet-selector/issues
- npm.io page: https://npm.io/package/@near-wallet-selector/wallet-utils

## Dependencies (8)

- [js-sha256](https://npm.io/package/js-sha256.md) ^0.9.0
- [@near-js/types](https://npm.io/package/@near-js/types.md) ^2.3.0
- [@near-js/utils](https://npm.io/package/@near-js/utils.md) ^2.3.0
- [@near-js/crypto](https://npm.io/package/@near-js/crypto.md) ^2.3.0
- [@near-js/signers](https://npm.io/package/@near-js/signers.md) ^2.3.0
- [@near-js/providers](https://npm.io/package/@near-js/providers.md) ^2.3.0
- [@near-js/transactions](https://npm.io/package/@near-js/transactions.md) ^2.3.0
- [@near-wallet-selector/core](https://npm.io/package/@near-wallet-selector/core.md) 10.1.4

## Recent versions

- 10.1.4 (latest) — 2025-12-04
- 10.0.0-beta.1 (beta) — 2025-10-10
- 4.0.0 (next) — 2022-05-30
- 10.1.3 — 2025-12-02
- 10.1.2 — 2025-11-25
- 10.1.1 — 2025-11-17
- 10.1.0 — 2025-10-28
- 10.0.0 — 2025-10-14
- 10.0.0-beta.0 — 2025-09-30
- 9.5.4 — 2025-09-23
- 9.5.3 — 2025-09-22
- 9.5.2 — 2025-09-19
- 9.5.1 — 2025-09-03
- 9.5.0 — 2025-09-03
- 9.4.1 — 2025-09-03
- … 86 more at https://npm.io/package/@near-wallet-selector/wallet-utils/versions

## README

# @near-wallet-selector/wallet-utils

This is the Wallet Utils package for NEAR Wallet Selector.

## Installation and Usage

The easiest way to use this package is to install it from the NPM registry

```bash
# Using pnpm
pnpm add -w @near-wallet-selector/wallet-utils

# Using NPM.
npm install @near-wallet-selector/wallet-utils
```

Then use it in your custom wallet integration:

```ts
import { createAction, signTransactions } from "@near-wallet-selector/wallet-utils";

const action = createAction({
  type: "Transfer",
  params: {
    deposit: "10000000000000000000000",
  },
});

const signedTransactions = await signTransactions(
  [{ signerId, receiverId, actions }],
  signer,
  options.network
);
```

## License

This repository is distributed under the terms of both the MIT license and the Apache License (Version 2.0).

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