@hardkas/accounts 0.8.10-alpha → 0.8.11-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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +5 -5
package/dist/index.js CHANGED
@@ -916,7 +916,7 @@ var HardkasFixtureSigner = class {
916
916
  artifactId: "",
917
917
  lineageId: plan.lineage?.lineageId || plan.contentHash || "0".repeat(64),
918
918
  parentArtifactId: plan.contentHash || plan.planId,
919
- rootArtifactId: plan.contentHash || plan.planId
919
+ rootArtifactId: plan.lineage?.rootArtifactId || plan.contentHash || plan.planId
920
920
  }
921
921
  };
922
922
  const hash = calculateContentHash3(draft, CURRENT_HASH_VERSION);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hardkas/accounts",
3
- "version": "0.8.10-alpha",
3
+ "version": "0.8.11-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/artifacts": "0.8.10-alpha",
23
- "@hardkas/core": "0.8.10-alpha",
24
- "@hardkas/config": "0.8.10-alpha",
25
- "@hardkas/localnet": "0.8.10-alpha"
22
+ "@hardkas/artifacts": "0.8.11-alpha",
23
+ "@hardkas/config": "0.8.11-alpha",
24
+ "@hardkas/core": "0.8.11-alpha",
25
+ "@hardkas/localnet": "0.8.11-alpha"
26
26
  },
27
27
  "devDependencies": {
28
28
  "tsup": "^8.3.5",