genlayer 0.32.3 → 0.32.4

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.4 (2025-12-05)
4
+
3
5
  ## 0.32.3 (2025-12-05)
4
6
 
5
7
  ## 0.32.2 (2025-12-04)
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.3";
18261
+ var version = "0.32.4";
18262
18262
  var package_default = {
18263
18263
  name: "genlayer",
18264
18264
  version,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "genlayer",
3
- "version": "0.32.3",
3
+ "version": "0.32.4",
4
4
  "description": "GenLayer Command Line Tool",
5
5
  "main": "src/index.ts",
6
6
  "type": "module",
@@ -152,6 +152,7 @@ describe("DelegatorExitAction", () => {
152
152
  action = new DelegatorExitAction();
153
153
  setupActionMocks(action);
154
154
  mockClient.delegatorExit.mockResolvedValue(mockTxResult);
155
+ mockClient.getEpochInfo.mockResolvedValue(mockEpochInfo);
155
156
  });
156
157
 
157
158
  test("exits successfully", async () => {