# @lukso/lsp6-contracts

> Package for the LSP6 Key Manager standard

Latest version **0.16.3** (published 2026-05-25) · Apache-2.0 license · 0 weekly downloads

## Install

```sh
npm install @lukso/lsp6-contracts
pnpm add @lukso/lsp6-contracts
yarn add @lukso/lsp6-contracts
bun add @lukso/lsp6-contracts
```

## Health

**Score 60/100 (C)** — status: active.

Positive: has types; esm support; no vulnerabilities; has provenance.

Warnings: low downloads; pre 1.0.

## Facts

| | |
|---|---|
| Version | 0.16.3 |
| Published | 2026-05-25 |
| First published | 2024-03-07 |
| Weekly downloads | 0 |
| License | Apache-2.0 |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 8 |
| Unpacked size | 426.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Provenance | attested (GitHub Actions) |
| GitHub stars | 88 |
| Maintainers | frozeman, lukso-network |
| Keywords | LUKSO, LSP, Blockchain, Standards, Smart Contracts, Ethereum, EVM, Solidity |

## Links

- npm: https://www.npmjs.com/package/@lukso/lsp6-contracts
- Repository: https://github.com/lukso-network/lsp-smart-contracts
- Homepage: https://github.com/lukso-network/lsp-smart-contracts#readme
- Issues: https://github.com/lukso-network/lsp-smart-contracts/issues
- npm.io page: https://npm.io/package/@lukso/lsp6-contracts

## Dependencies (8)

- [@lukso/lsp1-contracts](https://npm.io/package/@lukso/lsp1-contracts.md) ~0.16.0
- [@lukso/lsp2-contracts](https://npm.io/package/@lukso/lsp2-contracts.md) ~0.16.0
- [@lukso/lsp14-contracts](https://npm.io/package/@lukso/lsp14-contracts.md) ~0.16.0
- [@lukso/lsp20-contracts](https://npm.io/package/@lukso/lsp20-contracts.md) ~0.16.0
- [@lukso/lsp25-contracts](https://npm.io/package/@lukso/lsp25-contracts.md) ~0.16.0
- [@erc725/smart-contracts](https://npm.io/package/@erc725/smart-contracts.md) ^7.0.0
- [@openzeppelin/contracts](https://npm.io/package/@openzeppelin/contracts.md) ^4.9.3
- [@lukso/lsp17contractextension-contracts](https://npm.io/package/@lukso/lsp17contractextension-contracts.md) ~0.17.0

## Alternatives

- [@sindresorhus/slugify](https://npm.io/package/@sindresorhus/slugify.md) — 3.7M weekly downloads
- [solid-js](https://npm.io/package/solid-js.md) — 2.7M weekly downloads
- [expo-glass-effect](https://npm.io/package/expo-glass-effect.md) — 2.5M weekly downloads
- [nanoassert](https://npm.io/package/nanoassert.md) — 780.8K weekly downloads
- [@ffmpeg/ffmpeg](https://npm.io/package/@ffmpeg/ffmpeg.md) — 529.5K weekly downloads

## Recent versions

- 0.16.3 (latest) — 2026-05-25
- 0.15.0-rc.5 (rc) — 2024-04-03
- 0.15.5 — 2025-06-19
- 0.15.3 — 2025-06-19
- 0.15.2 — 2025-06-18
- 0.15.1 — 2025-04-19
- 0.15.0 — 2024-04-05
- 0.15.0-rc.4 — 2024-04-02
- 0.15.0-rc.1 — 2024-03-22
- 0.15.0-rc.0 — 2024-03-07

## README

# LSP6 Key Manager &middot; [![npm version](https://img.shields.io/npm/v/@lukso/lsp6-contracts.svg?style=flat)](https://www.npmjs.com/package/@lukso/lsp6-contracts)

npm package for the LSP6 Key Manager standard. It can be used with a Universal Profile or an LSP7/8 Token contract to manage these contracts from multiple addresses (_"controllers"_), with multiple permissions and fine-grained access control.

## Installation

```bash
npm install @lukso/lsp6-contracts
```

## Available Constants & Types

The `@lukso/lsp6-contracts` npm package contains useful constants such as interface IDs or ERC725Y Data Keys related to the LSP6 Standard. You can import and access them as follows.

In JavaScript.

```javascript
import {
  INTERFACE_ID_LSP6,
  LSP6DataKeys,
  ERC1271_VALUES,
  CALLTYPE,
  ALL_PERMISSIONS,
  PERMISSIONS,
  LSP6PermissionName,
} from "@lukso/lsp6-contracts";
```

In Solidity.

<!-- prettier-ignore -->
```solidity
import {
  _INTERFACEID_ERC1271,
  _ERC1271_SUCCESSVALUE,
  _ERC1271_FAILVALUE
} from "@lukso/lsp6-contracts/contracts/constants.sol";
```

## TypeScript types

You can also import the [type-safe ABI](https://abitype.dev/) from the `/abi` path.

```ts
import {
  lsp6KeyManagerAbi,
  lsp6KeyManagerInitAbi,
} from "@lukso/lsp6-contracts/abi";
```

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