@orbinum/sdk 0.4.2 → 0.6.0
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/LICENSE +21 -0
- package/README.md +15 -724
- package/dist/index.d.mts +1310 -550
- package/dist/index.d.ts +1310 -550
- package/dist/index.js +1593 -496
- package/dist/index.mjs +1580 -496
- package/package.json +23 -21
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orbinum/sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "Official TypeScript SDK for Orbinum.",
|
|
5
5
|
"author": "Orbinum",
|
|
6
|
-
"license": "
|
|
6
|
+
"license": "MIT",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"module": "dist/index.mjs",
|
|
9
9
|
"types": "dist/index.d.ts",
|
|
@@ -34,27 +34,28 @@
|
|
|
34
34
|
},
|
|
35
35
|
"homepage": "https://github.com/orbinum/ts-sdk#readme",
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@eslint/js": "
|
|
38
|
-
"@types/node": "
|
|
39
|
-
"eslint": "
|
|
40
|
-
"prettier": "
|
|
41
|
-
"ts-node": "
|
|
42
|
-
"tsup": "
|
|
43
|
-
"typescript": "
|
|
44
|
-
"typescript-eslint": "
|
|
45
|
-
"vitest": "
|
|
37
|
+
"@eslint/js": "10.0.1",
|
|
38
|
+
"@types/node": "25.5.2",
|
|
39
|
+
"eslint": "10.2.0",
|
|
40
|
+
"prettier": "3.8.1",
|
|
41
|
+
"ts-node": "10.9.2",
|
|
42
|
+
"tsup": "8.5.1",
|
|
43
|
+
"typescript": "6.0.2",
|
|
44
|
+
"typescript-eslint": "8.58.0",
|
|
45
|
+
"vitest": "4.1.3"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@noble/ciphers": "
|
|
49
|
-
"@noble/hashes": "
|
|
50
|
-
"@
|
|
51
|
-
"@polkadot-api/
|
|
52
|
-
"@polkadot-api/
|
|
53
|
-
"@polkadot/
|
|
54
|
-
"@
|
|
55
|
-
"@
|
|
56
|
-
"
|
|
57
|
-
"
|
|
48
|
+
"@noble/ciphers": "2.1.1",
|
|
49
|
+
"@noble/hashes": "2.0.1",
|
|
50
|
+
"@orbinum/proof-generator": "3.7.0",
|
|
51
|
+
"@polkadot-api/metadata-builders": "0.13.9",
|
|
52
|
+
"@polkadot-api/substrate-bindings": "0.17.0",
|
|
53
|
+
"@polkadot-api/tx-utils": "0.2.2",
|
|
54
|
+
"@polkadot/util-crypto": "14.0.3",
|
|
55
|
+
"@scure/base": "2.0.0",
|
|
56
|
+
"@zk-kit/baby-jubjub": "1.0.3",
|
|
57
|
+
"polkadot-api": "1.23.3",
|
|
58
|
+
"poseidon-lite": "0.3.0"
|
|
58
59
|
},
|
|
59
60
|
"scripts": {
|
|
60
61
|
"build": "tsup src/index.ts --format esm,cjs --dts",
|
|
@@ -65,6 +66,7 @@
|
|
|
65
66
|
"lint": "eslint src/**/*.ts",
|
|
66
67
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
67
68
|
"format:check": "prettier --check \"src/**/*.ts\"",
|
|
69
|
+
"check": "npm run typecheck:all && npm run lint && npm run format:check && npm run build && npm run test",
|
|
68
70
|
"clean": "rm -rf dist node_modules package-lock.json yarn.lock pnpm-lock.yaml"
|
|
69
71
|
}
|
|
70
72
|
}
|