@hardkas/simulator 0.9.1-alpha → 0.9.2-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 +2 -2
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -833,7 +833,7 @@ function simulateSilverDeploy(deployPlanArtifact, options = {}) {
833
833
  };
834
834
  const draft = {
835
835
  schema: "hardkas.silver.deploySimulation",
836
- hardkasVersion: options.hardkasVersion ?? deployPlanArtifact.hardkasVersion ?? "0.9.1-alpha",
836
+ hardkasVersion: options.hardkasVersion ?? deployPlanArtifact.hardkasVersion ?? "0.9.2-alpha",
837
837
  version: SILVER_SIMULATOR_VERSION,
838
838
  hashVersion: CURRENT_HASH_VERSION,
839
839
  networkId: "simnet",
@@ -990,7 +990,7 @@ function simulateSilverSpend(spendPlanArtifact, simulatedState, options = {}) {
990
990
  });
991
991
  const draft = {
992
992
  schema: "hardkas.silver.spendSimulation",
993
- hardkasVersion: options.hardkasVersion ?? spendPlanArtifact.hardkasVersion ?? "0.9.1-alpha",
993
+ hardkasVersion: options.hardkasVersion ?? spendPlanArtifact.hardkasVersion ?? "0.9.2-alpha",
994
994
  version: SILVER_SIMULATOR_VERSION,
995
995
  hashVersion: CURRENT_HASH_VERSION,
996
996
  networkId: "simnet",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hardkas/simulator",
3
- "version": "0.9.1-alpha",
3
+ "version": "0.9.2-alpha",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -12,8 +12,8 @@
12
12
  }
13
13
  },
14
14
  "dependencies": {
15
- "@hardkas/core": "0.9.1-alpha",
16
- "@hardkas/tx-builder": "0.9.1-alpha"
15
+ "@hardkas/tx-builder": "0.9.2-alpha",
16
+ "@hardkas/core": "0.9.2-alpha"
17
17
  },
18
18
  "devDependencies": {
19
19
  "tsup": "^8.3.5",