genlayer 0.40.0-clarke.3 → 0.40.0-clarke.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 +8 -0
- package/dist/index.js +479 -27
- package/e2e/config-default.e2e.ts +2 -2
- package/e2e/errors.e2e.ts +2 -2
- package/e2e/fixtures/mockProvider.ts +17 -1
- package/e2e/lane-a-staking.e2e.ts +3 -3
- package/package.json +1 -1
- package/src/commands/network/index.ts +1 -0
- package/src/commands/network/setNetwork.ts +11 -1
- package/src/commands/staking/index.ts +4 -1
- package/src/commands/staking/stakingInfo.ts +173 -1
- package/src/commands/staking/validatorDeposit.ts +56 -1
- package/src/commands/staking/validatorJoin.ts +40 -1
- package/src/commands/staking/validatorPrime.ts +30 -0
- package/src/commands/vesting/index.ts +4 -2
- package/src/commands/vesting/validatorCreate.ts +34 -0
- package/src/commands/vesting/validatorDeposit.ts +56 -0
- package/src/lib/actions/BaseAction.ts +67 -0
- package/src/lib/networks/customNetworks.ts +18 -1
- package/src/lib/wallet/bridgePage.ts +127 -18
- package/tests/actions/customNetworkProfiles.test.ts +44 -2
- package/tests/actions/staking.test.ts +282 -3
- package/tests/actions/vesting.test.ts +121 -0
- package/tests/commands/vesting.test.ts +22 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.40.0-clarke.4](https://github.com/genlayerlabs/genlayer-cli/compare/v0.40.0-clarke.3...v0.40.0-clarke.4) (2026-07-10)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* **network:** --explorer override for custom networks; stop inheriting the base explorer ([#393](https://github.com/genlayerlabs/genlayer-cli/issues/393)) ([015e6d4](https://github.com/genlayerlabs/genlayer-cli/commit/015e6d46d4223a569207c12a2436fbce0dea7c6f))
|
|
8
|
+
* **staking:** validator eligibility warnings + clean validator-info view ([#394](https://github.com/genlayerlabs/genlayer-cli/issues/394)) ([dd77d5b](https://github.com/genlayerlabs/genlayer-cli/commit/dd77d5bab743a03880e82d5bd4de7cfd2efad760))
|
|
9
|
+
* **wallet:** EIP-6963 multi-wallet discovery in the browser bridge ([#392](https://github.com/genlayerlabs/genlayer-cli/issues/392)) ([74952bd](https://github.com/genlayerlabs/genlayer-cli/commit/74952bd8fb42499564fc9096f2609449a7185fbb))
|
|
10
|
+
|
|
3
11
|
## [0.40.0-clarke.3](https://github.com/genlayerlabs/genlayer-cli/compare/v0.40.0-clarke.2...v0.40.0-clarke.3) (2026-07-10)
|
|
4
12
|
|
|
5
13
|
### Features
|