genlayer 0.8.0 → 0.9.0
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/.env.example +9 -0
- package/CHANGELOG.md +7 -0
- package/dist/index.js +26288 -13163
- package/docker-compose.yml +7 -0
- package/esbuild.config.dev +1 -1
- package/esbuild.config.prod +1 -1
- package/package.json +3 -1
- package/src/commands/contracts/deploy.ts +69 -0
- package/src/commands/contracts/index.ts +18 -0
- package/src/commands/general/index.ts +1 -2
- package/src/index.ts +2 -0
- package/src/lib/accounts/getPrivateKey.ts +21 -0
- package/tests/actions/deploy.test.ts +137 -0
- package/tests/commands/deploy.test.ts +69 -0
- package/tests/index.test.ts +4 -0
- package/tests/libs/getPrivateKey.test.ts +96 -0
- package/tsconfig.json +1 -1
package/.env.example
CHANGED
|
@@ -70,3 +70,12 @@ VALIDATORS_CONFIG_JSON=''
|
|
|
70
70
|
|
|
71
71
|
VSCODEDEBUG="false"
|
|
72
72
|
LOCALNETVERSION="latest"
|
|
73
|
+
|
|
74
|
+
FRONTEND_BUILD_TARGET = 'final' # change to 'dev' to run in dev mode
|
|
75
|
+
|
|
76
|
+
# Hardhat port
|
|
77
|
+
HARDHAT_URL = 'http://hardhat'
|
|
78
|
+
HARDHAT_PORT = '8545'
|
|
79
|
+
HARDHAT_PRIVATE_KEY = '0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80'
|
|
80
|
+
|
|
81
|
+
BACKEND_BUILD_TARGET = 'debug'
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## 0.9.0 (2024-12-13)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* Add Deploy Command and Update Configurations for Compatibility ([#153](https://github.com/yeagerai/genlayer-cli/issues/153)) ([8744b2d](https://github.com/yeagerai/genlayer-cli/commit/8744b2d3ef2b4d7fd4d3ac71ac6e8eef69ed1555))
|
|
9
|
+
|
|
3
10
|
## 0.8.0 (2024-12-11)
|
|
4
11
|
|
|
5
12
|
|