@hyperbridge/sdk 1.1.12 → 1.2.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/dist/browser/index.d.ts +251 -13
- package/dist/browser/index.js +4915 -80
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.d.ts +251 -13
- package/dist/node/index.js +4915 -80
- package/dist/node/index.js.map +1 -1
- package/package.json +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hyperbridge/sdk",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "The hyperclient SDK provides utilities for querying proofs and statuses for cross-chain requests from HyperBridge.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/node/index.d.ts",
|
|
@@ -54,10 +54,11 @@
|
|
|
54
54
|
"scale-ts": "^1.6.1",
|
|
55
55
|
"std-env": "^3.9.0",
|
|
56
56
|
"ts-pattern": "^5.6.2",
|
|
57
|
-
"viem": "^2.
|
|
57
|
+
"viem": "^2.34.0"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"@biomejs/biome": "^1.9.4",
|
|
61
|
+
"@iarna/toml": "^2.2.5",
|
|
61
62
|
"@polkadot/keyring": "13.4.3",
|
|
62
63
|
"@polytope-labs/hyperclient": "1.2.0",
|
|
63
64
|
"@types/node": "^22.13.5",
|
|
@@ -82,10 +83,11 @@
|
|
|
82
83
|
"node": ">=22.x.x"
|
|
83
84
|
},
|
|
84
85
|
"scripts": {
|
|
85
|
-
"build": "pnpm run build:browser && pnpm run build:node",
|
|
86
|
+
"build": "pnpm run generate:config && pnpm run build:browser && pnpm run build:node",
|
|
86
87
|
"build:node": "tsup --config tsup-node.config.ts",
|
|
87
88
|
"build:browser": "tsup --config tsup-browser.config.ts",
|
|
88
89
|
"postinstall": "pnpm run build",
|
|
90
|
+
"generate:config": "node scripts/generate-chain-config.js",
|
|
89
91
|
"test": "npm run test:concurrent && npm run test:sequence",
|
|
90
92
|
"test:file": "vitest --watch=false --maxConcurrency=1",
|
|
91
93
|
"test:concurrent": "vitest --watch=false --exclude=./src/tests/sequential",
|