genlayer 0.38.15 → 0.38.16
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/.github/workflows/smoke.yml +16 -0
- package/CHANGELOG.md +6 -0
- package/dist/index.js +2294 -2961
- package/package.json +2 -2
- package/src/commands/account/send.ts +13 -11
- package/tests/smoke.test.ts +4 -1
|
@@ -23,5 +23,21 @@ jobs:
|
|
|
23
23
|
|
|
24
24
|
- run: npm ci
|
|
25
25
|
|
|
26
|
+
# Smoke tests shell out to `node dist/index.js` to exercise the
|
|
27
|
+
# compiled CLI — without a build first, that file doesn't exist
|
|
28
|
+
# and the `genlayer staking validators` assertion fails with
|
|
29
|
+
# MODULE_NOT_FOUND before it can hit the network at all.
|
|
30
|
+
- name: Build CLI
|
|
31
|
+
run: npm run build
|
|
32
|
+
|
|
33
|
+
# The staking subcommands need a keystore for the default account
|
|
34
|
+
# even for read-only listings (BaseAction loads the account to
|
|
35
|
+
# report "your stake"). Create a throwaway one with a known
|
|
36
|
+
# password so the subprocess test in tests/smoke.test.ts can run.
|
|
37
|
+
- name: Create default keystore for CLI subprocess tests
|
|
38
|
+
run: node dist/index.js account create --name default --password ci-smoke-test
|
|
39
|
+
env:
|
|
40
|
+
CI: true
|
|
41
|
+
|
|
26
42
|
- name: Run smoke tests
|
|
27
43
|
run: npm run test:smoke
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.38.16 (2026-04-22)
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* **account:** send parses plain integer as wei, not GEN ([#294](https://github.com/genlayerlabs/genlayer-cli/issues/294)) ([660e745](https://github.com/genlayerlabs/genlayer-cli/commit/660e745678c717eeff3f0a5496203c8a4952e680)), closes [genlayer-js#155](https://github.com/genlayerlabs/genlayer-js/issues/155)
|
|
8
|
+
|
|
3
9
|
## 0.38.15 (2026-04-14)
|
|
4
10
|
|
|
5
11
|
### Bug Fixes
|