@layerzerolabs/lz-initia-cli 3.0.23 → 3.0.24

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,15 @@
1
1
  # @layerzerolabs/lz-initia-cli
2
2
 
3
+ ## 3.0.24
4
+
5
+ ### Patch Changes
6
+
7
+ - 5507921: TON testnet
8
+ - Updated dependencies [5507921]
9
+ - @layerzerolabs/lz-definitions@3.0.24
10
+ - @layerzerolabs/lz-config-types@3.0.24
11
+ - @layerzerolabs/lz-utilities@3.0.24
12
+
3
13
  ## 3.0.23
4
14
 
5
15
  ### Patch Changes
package/README.md CHANGED
@@ -74,7 +74,6 @@ const config: LzInitiaConfig = {
74
74
  },
75
75
  },
76
76
  executor_v2: {
77
- alias: "ExecutorV2",
78
77
  modulePath: path.join(contractWorkspace, "executor/executor-v2"),
79
78
  deployer: Account.fromPrivateKey({
80
79
  privateKey: process.env.EXECUTOR_DEPLOYER,
@@ -101,7 +100,6 @@ Details of the configuration:
101
100
  - `gasPrice`: The gas price for each environment. If not set, the default value is 2 times the current gas price.
102
101
  - `baseModules`: The path to another lz-initia config file. The command tool will search the base modules recursively if module name not found in `modules`. If not set, the default value is [].
103
102
  - `modules`: The module configuration. The key is the module name used in lz-initia-cli command. The key should be the same with package name in Move.toml.
104
- - `alias`: Artifact/Deployment name for the module. If not set, the module name will be used.
105
103
  - `modulePath`: The path to the module's contract directory which contains Move.toml.
106
104
  - `deployer`: The deployer for the module. If not set, the default deployer will be used.
107
105
  - `variant`: The variant for the module. If not set, it means the module has no variant. It will be overridden by the variant in the command line.