genlayer 0.32.4 → 0.32.5

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/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.32.5 (2025-12-09)
4
+
3
5
  ## 0.32.4 (2025-12-05)
4
6
 
5
7
  ## 0.32.3 (2025-12-05)
package/dist/index.js CHANGED
@@ -18258,7 +18258,7 @@ var require_semver2 = __commonJS({
18258
18258
  import { program } from "commander";
18259
18259
 
18260
18260
  // package.json
18261
- var version = "0.32.4";
18261
+ var version = "0.32.5";
18262
18262
  var package_default = {
18263
18263
  name: "genlayer",
18264
18264
  version,
@@ -50183,8 +50183,8 @@ var ValidatorWizardAction = class extends StakingAction {
50183
50183
  {
50184
50184
  type: "input",
50185
50185
  name: "accountName",
50186
- message: "Enter a name for your validator account:",
50187
- default: "validator",
50186
+ message: "Enter a name for your owner account:",
50187
+ default: "owner",
50188
50188
  validate: (input) => input.length > 0 || "Name cannot be empty"
50189
50189
  }
50190
50190
  ]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "genlayer",
3
- "version": "0.32.4",
3
+ "version": "0.32.5",
4
4
  "description": "GenLayer Command Line Tool",
5
5
  "main": "src/index.ts",
6
6
  "type": "module",
@@ -115,8 +115,8 @@ export class ValidatorWizardAction extends StakingAction {
115
115
  {
116
116
  type: "input",
117
117
  name: "accountName",
118
- message: "Enter a name for your validator account:",
119
- default: "validator",
118
+ message: "Enter a name for your owner account:",
119
+ default: "owner",
120
120
  validate: (input: string) => input.length > 0 || "Name cannot be empty",
121
121
  },
122
122
  ]);