@lukso/lsp11-contracts 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs ADDED
@@ -0,0 +1,5 @@
1
+ 'use strict';
2
+
3
+ const INTERFACE_ID_LSP11 = "0x23a45ef0";
4
+
5
+ exports.INTERFACE_ID_LSP11 = INTERFACE_ID_LSP11;
@@ -0,0 +1,3 @@
1
+ declare const INTERFACE_ID_LSP11 = "0x23a45ef0";
2
+
3
+ export { INTERFACE_ID_LSP11 };
@@ -0,0 +1,3 @@
1
+ declare const INTERFACE_ID_LSP11 = "0x23a45ef0";
2
+
3
+ export { INTERFACE_ID_LSP11 };
@@ -0,0 +1,3 @@
1
+ declare const INTERFACE_ID_LSP11 = "0x23a45ef0";
2
+
3
+ export { INTERFACE_ID_LSP11 };
package/dist/index.mjs ADDED
@@ -0,0 +1,3 @@
1
+ const INTERFACE_ID_LSP11 = "0x23a45ef0";
2
+
3
+ export { INTERFACE_ID_LSP11 };
package/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "@lukso/lsp11-contracts",
3
+ "version": "0.1.2",
4
+ "description": "Package for the LSP11 Social Recovery standard",
5
+ "license": "Apache-2.0",
6
+ "author": "",
7
+ "main": "./dist/index.cjs",
8
+ "module": "./dist/index.mjs",
9
+ "typings": "./dist/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "require": "./dist/index.cjs",
13
+ "import": "./dist/index.mjs",
14
+ "types": "./dist/index.d.ts"
15
+ },
16
+ "./artifacts/*": "./artifacts/*",
17
+ "./package.json": "./package.json"
18
+ },
19
+ "files": [
20
+ "contracts/**/*.sol",
21
+ "!contracts/Mocks/**/*.sol",
22
+ "artifacts/*.json",
23
+ "dist",
24
+ "./README.md"
25
+ ],
26
+ "keywords": [
27
+ "LUKSO",
28
+ "LSP",
29
+ "Blockchain",
30
+ "Standards",
31
+ "Smart Contracts",
32
+ "Ethereum",
33
+ "EVM",
34
+ "Solidity"
35
+ ],
36
+ "scripts": {
37
+ "build": "hardhat compile --show-stack-traces",
38
+ "build:foundry": "forge build",
39
+ "build:types": "npx wagmi generate",
40
+ "build:js": "unbuild",
41
+ "clean": "hardhat clean && rm -Rf dist/ cache/ node_modules/ .turbo/ types/ typechain/ build/ artifacts/",
42
+ "format": "prettier --write .",
43
+ "lint": "eslint . --ext .ts,.js",
44
+ "lint:solidity": "solhint 'contracts/**/*.sol' && prettier --check 'contracts/**/*.sol'",
45
+ "test:foundry": "FOUNDRY_PROFILE=lsp11 forge test --no-match-test Skip -vvv",
46
+ "test:coverage": "hardhat coverage",
47
+ "package": "hardhat prepare-package"
48
+ },
49
+ "dependencies": {
50
+ "@lukso/lsp25-contracts": "~0.15.0",
51
+ "@openzeppelin/contracts": "^4.9.3"
52
+ }
53
+ }