@palliora.org/chainsdk 0.4.0 → 0.5.1
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/AGENTS.md +61 -0
- package/CHAIN-RULES.md +760 -0
- package/README.md +161 -26
- package/dist/index.cjs +1313 -124
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1311 -24
- package/dist/index.d.ts +1311 -24
- package/dist/index.js +1282 -93
- package/dist/index.js.map +1 -1
- package/package.json +20 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@palliora.org/chainsdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "Palliora Chain SDK",
|
|
5
5
|
"author": "palliora-org",
|
|
6
6
|
"license": "MIT",
|
|
@@ -23,13 +23,26 @@
|
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
25
|
"files": [
|
|
26
|
-
"dist"
|
|
26
|
+
"dist",
|
|
27
|
+
"CHAIN-RULES.md",
|
|
28
|
+
"AGENTS.md",
|
|
29
|
+
"README.md"
|
|
27
30
|
],
|
|
28
31
|
"repository": {
|
|
29
32
|
"type": "git",
|
|
30
|
-
"url": "https://github.com/palliora-org/
|
|
33
|
+
"url": "https://github.com/palliora-org/palliora-sdk.git"
|
|
31
34
|
},
|
|
32
35
|
"type": "module",
|
|
36
|
+
"scripts": {
|
|
37
|
+
"build": "tsup",
|
|
38
|
+
"clean": "rimraf dist",
|
|
39
|
+
"lint": "eslint src",
|
|
40
|
+
"prepare": "tsup",
|
|
41
|
+
"test": "vitest run --exclude test/indexer/integration.test.ts",
|
|
42
|
+
"test:watch": "vitest",
|
|
43
|
+
"test:indexer": "vitest run test/indexer/ --exclude test/indexer/integration.test.ts",
|
|
44
|
+
"test:integration": "vitest run test/indexer/integration.test.ts"
|
|
45
|
+
},
|
|
33
46
|
"dependencies": {
|
|
34
47
|
"@noble/curves": "^1.9.7",
|
|
35
48
|
"@noble/hashes": "^1.8.0",
|
|
@@ -54,15 +67,11 @@
|
|
|
54
67
|
"ts-node": "^10.9.2",
|
|
55
68
|
"tsup": "^8.5.1",
|
|
56
69
|
"typescript": "^5.9.3",
|
|
57
|
-
"typescript-eslint": "^8.57.1"
|
|
70
|
+
"typescript-eslint": "^8.57.1",
|
|
71
|
+
"vitest": "^5.0.0"
|
|
58
72
|
},
|
|
73
|
+
"packageManager": "pnpm@10.12.1+sha512.f0dda8580f0ee9481c5c79a1d927b9164f2c478e90992ad268bbb2465a736984391d6333d2c327913578b2804af33474ca554ba29c04a8b13060a717675ae3ac",
|
|
59
74
|
"resolutions": {
|
|
60
75
|
"typescript": "^5.5.4"
|
|
61
|
-
},
|
|
62
|
-
"scripts": {
|
|
63
|
-
"build": "tsup",
|
|
64
|
-
"clean": "rimraf dist",
|
|
65
|
-
"lint": "eslint src",
|
|
66
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
67
76
|
}
|
|
68
|
-
}
|
|
77
|
+
}
|