genlayer 0.18.0-beta.0 → 0.18.1

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.
Files changed (35) hide show
  1. package/CHANGELOG.md +4 -2
  2. package/dist/index.js +8868 -671
  3. package/docker-compose.yml +6 -1
  4. package/package.json +2 -2
  5. package/src/commands/contracts/call.ts +49 -7
  6. package/src/commands/contracts/deploy.ts +2 -3
  7. package/src/commands/contracts/index.ts +11 -36
  8. package/src/commands/general/index.ts +2 -0
  9. package/src/commands/general/init.ts +23 -17
  10. package/src/commands/general/start.ts +13 -16
  11. package/src/commands/keygen/create.ts +2 -2
  12. package/src/commands/network/index.ts +14 -0
  13. package/src/commands/network/setNetwork.ts +60 -0
  14. package/src/commands/update/ollama.ts +1 -1
  15. package/src/index.ts +9 -7
  16. package/src/lib/actions/BaseAction.ts +7 -5
  17. package/src/lib/config/simulator.ts +5 -5
  18. package/src/lib/interfaces/ISimulatorService.ts +2 -2
  19. package/src/lib/services/simulator.ts +25 -13
  20. package/tests/actions/call.test.ts +86 -22
  21. package/tests/actions/create.test.ts +8 -8
  22. package/tests/actions/deploy.test.ts +1 -0
  23. package/tests/actions/init.test.ts +128 -173
  24. package/tests/actions/ollama.test.ts +2 -2
  25. package/tests/actions/setNetwork.test.ts +199 -0
  26. package/tests/actions/start.test.ts +38 -48
  27. package/tests/commands/init.test.ts +8 -1
  28. package/tests/commands/network.test.ts +60 -0
  29. package/tests/commands/up.test.ts +5 -1
  30. package/tests/index.test.ts +5 -2
  31. package/tests/libs/baseAction.test.ts +26 -37
  32. package/tests/services/simulator.test.ts +155 -98
  33. package/src/commands/contracts/write.ts +0 -49
  34. package/tests/actions/write.test.ts +0 -102
  35. package/tests/commands/write.test.ts +0 -76
package/CHANGELOG.md CHANGED
@@ -1,10 +1,12 @@
1
1
  # Changelog
2
2
 
3
- ## 0.18.0-beta.0 (2025-05-09)
3
+ ## 0.18.1 (2025-05-29)
4
+
5
+ ## 0.18.0 (2025-05-28)
4
6
 
5
7
  ### Features
6
8
 
7
- * separate read and write calls ([#222](https://github.com/yeagerai/genlayer-cli/issues/222)) ([fce8904](https://github.com/yeagerai/genlayer-cli/commit/fce8904f6b51587bfb9e690b0e42efe441f19b1d))
9
+ * using profiles to set frontend and ollama containers ([#221](https://github.com/yeagerai/genlayer-cli/issues/221)) ([a3d0d4e](https://github.com/yeagerai/genlayer-cli/commit/a3d0d4e77e7a92a5a31ae534f5f83e81a1672783))
8
10
 
9
11
  ## 0.17.0 (2025-05-05)
10
12