@lukso/lsp-smart-contracts
Version:
The reference smart contract implementation for the LUKSO LSP standards
29 lines (22 loc) • 754 B
Markdown
# `/lsp-smart-contracts`
This is the _"umbrella"_ package for the LSP smart contracts. It contains all the individual `/lspN-contracts` packages (where `N` is an LSP number) as dependencies.
## Installation
```console
npm install /lsp-smart-contracts
```
## Available Constants & Types
The `/lsp-smart-contracts` npm package contains useful constants such as interface IDs, and ERC725Y data keys related to the LSP Standards. You can import and access them as follows:
```js
import {
INTERFACE_IDS,
LSP8_TOKEN_ID_FORMAT,
LSP1_TYPE_IDS,
OPERATIONS,
SupportedStandards,
ERC725YDataKeys,
INTERFACE_ID_LSP1DELEGATE,
LSP6DataKeys,
LSP25_VERSION,
LSPSupportedStandard,
} from "@lukso/lsp-smart-contracts";
```