genlayer 0.32.4 → 0.32.6

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,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.32.6 (2025-12-12)
4
+
5
+ ## 0.32.5 (2025-12-09)
6
+
3
7
  ## 0.32.4 (2025-12-05)
4
8
 
5
9
  ## 0.32.3 (2025-12-05)
package/README.md CHANGED
@@ -309,10 +309,14 @@ COMMANDS:
309
309
  delegator-join [options] Join as a delegator by staking with a validator
310
310
  delegator-exit [options] Exit as a delegator by withdrawing shares
311
311
  delegator-claim [options] Claim delegator withdrawals after unbonding period
312
- validator-info [options] Get information about a validator
313
- delegation-info [options] Get delegation info for a delegator with a validator
314
- epoch-info [options] Get epoch info with timing estimates
312
+ validator-info [validator] Get information about a validator
313
+ validator-history [validator] Show slash and reward history for a validator
314
+ delegation-info [validator] Get delegation info for a delegator with a validator
315
+ epoch-info [options] Get current/previous epoch info (--epoch <n> for specific)
316
+ validators [options] Show validator set with stake, status, and weight
315
317
  active-validators [options] List all active validators
318
+ quarantined-validators List all quarantined validators
319
+ banned-validators List all banned validators
316
320
 
317
321
  COMMON OPTIONS (all commands):
318
322
  --network <network> Network to use (localnet, testnet-asimov)
@@ -360,20 +364,24 @@ EXAMPLES:
360
364
  # banned: 'Not banned'
361
365
  # }
362
366
 
363
- # Get current epoch info (includes timing estimates)
367
+ # Get current epoch info (shows current + previous epoch)
364
368
  genlayer staking epoch-info
365
369
  # Output:
366
- # {
367
- # currentEpoch: '2',
368
- # epochStarted: '2025-11-28T09:57:49.000Z',
369
- # epochEnded: 'Not ended',
370
- # nextEpochEstimate: '2025-11-29T09:57:49.000Z',
371
- # timeUntilNextEpoch: '19h 56m',
372
- # minEpochDuration: '24h 0m',
373
- # validatorMinStake: '0.01 GEN',
374
- # delegatorMinStake: '42 GEN',
375
- # activeValidatorsCount: '6'
376
- # }
370
+ # ✔ Epoch info
371
+ #
372
+ # Current Epoch: 5 (started 9h 30m ago)
373
+ # Next Epoch: in 14h 30m
374
+ # Validators: 33
375
+ # ...
376
+ #
377
+ # Previous Epoch: 4 (finalized)
378
+ # Inflation: 1732904.66 GEN
379
+ # Claimed: 0 GEN
380
+ # Unclaimed: 1732904.66 GEN
381
+ # ...
382
+
383
+ # Query specific epoch data
384
+ genlayer staking epoch-info --epoch 4
377
385
 
378
386
  # List active validators
379
387
  genlayer staking active-validators
@@ -387,6 +395,21 @@ EXAMPLES:
387
395
  # ]
388
396
  # }
389
397
 
398
+ # Show validator set table with stake, status, weight
399
+ genlayer staking validators
400
+ genlayer staking validators --all # Include banned validators
401
+
402
+ # Show validator slash/reward history (testnet only)
403
+ genlayer staking validator-history 0x...
404
+ genlayer staking validator-history 0x... --limit 20
405
+ # Output:
406
+ # ┌─────────────┬───────┬────────┬────────────────────────┬─────────┐
407
+ # │ Time │ Epoch │ Type │ Details │ Block │
408
+ # ├─────────────┼───────┼────────┼────────────────────────┼─────────┤
409
+ # │ 12-11 14:20 │ 5 │ REWARD │ Val: 0 GEN, Del: 0 GEN │ 4725136 │
410
+ # │ 12-10 18:39 │ 4 │ SLASH │ 1.00% penalty │ 4717431 │
411
+ # └─────────────┴───────┴────────┴────────────────────────┴─────────┘
412
+
390
413
  # Exit and claim (requires validator wallet address)
391
414
  genlayer staking validator-exit --validator 0x... --shares 100
392
415
  genlayer staking validator-claim --validator 0x...