@hardkas/accounts 0.8.20-alpha → 0.9.0-alpha
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.js +1 -2
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -1115,9 +1115,8 @@ var KaspaSdkKeyGenerator = class {
|
|
|
1115
1115
|
try {
|
|
1116
1116
|
return await rawLoader();
|
|
1117
1117
|
} catch (e) {
|
|
1118
|
-
const String2 = globalThis.String;
|
|
1119
1118
|
const err = new Error(
|
|
1120
|
-
"WALLET_BACKEND_UNAVAILABLE: Kaspa cryptography adapter missing. Real account generation requires WASM execution.\
|
|
1119
|
+
"WALLET_BACKEND_UNAVAILABLE: Kaspa cryptography adapter missing. Real account generation requires WASM execution.\nUse 'hardkas accounts real import' to add a test fixture manually for now."
|
|
1121
1120
|
);
|
|
1122
1121
|
err.code = "WALLET_BACKEND_UNAVAILABLE";
|
|
1123
1122
|
throw err;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hardkas/accounts",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0-alpha",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"hash-wasm": "^4.12.0",
|
|
21
21
|
"kaspa-wasm": "0.13.0",
|
|
22
|
-
"@hardkas/
|
|
23
|
-
"@hardkas/
|
|
24
|
-
"@hardkas/core": "0.
|
|
25
|
-
"@hardkas/localnet": "0.
|
|
22
|
+
"@hardkas/artifacts": "0.9.0-alpha",
|
|
23
|
+
"@hardkas/config": "0.9.0-alpha",
|
|
24
|
+
"@hardkas/core": "0.9.0-alpha",
|
|
25
|
+
"@hardkas/localnet": "0.9.0-alpha"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"tsup": "^8.3.5",
|