@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/README.md +17 -0
- package/artifacts/ILSP11SocialRecovery.json +670 -0
- package/artifacts/LSP11SocialRecovery.json +1171 -0
- package/contracts/ILSP11SocialRecovery.sol +326 -0
- package/contracts/LSP11Constants.sol +8 -0
- package/contracts/LSP11Errors.sol +181 -0
- package/contracts/LSP11SocialRecovery.sol +970 -0
- package/dist/index.cjs +5 -0
- package/dist/index.d.cts +3 -0
- package/dist/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.mjs +3 -0
- package/package.json +53 -0
package/dist/index.cjs
ADDED
package/dist/index.d.cts
ADDED
package/dist/index.d.mts
ADDED
package/dist/index.d.ts
ADDED
package/dist/index.mjs
ADDED
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
|
+
}
|