You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cli/README.md
+54-2Lines changed: 54 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -102,19 +102,26 @@ Options:
102
102
Command:
103
103
104
104
```sh
105
-
iapp deploy
105
+
iapp deploy [--chain <input>]
106
106
```
107
107
108
108
Description: Deploy your iApp on the iExec protocol in debug mode.
109
109
110
+
Options:
111
+
112
+
- use `--chain` Specify the blockchain on which the iApp will be deployed (overrides defaultChain configuration which is `bellecour`). Possible values are `bellecour|arbitrum-sepolia-testnet|arbitrum-mainnet`
113
+
114
+
> [!IMPORTANT]
115
+
> To use a chain other than `bellecour`, you must pass (or set in your system) `EXPERIMENTAL_NETWORKS=true` before the `iApp` command.
116
+
110
117
---
111
118
112
119
### `run`
113
120
114
121
Command:
115
122
116
123
```sh
117
-
iapp run <iApp-address> [--args <input>] [--protectedData <protectedData-address>] [--inputFile <url...>]
include the `--protectedData` option followed by the address of the protected
137
144
data.
145
+
- use `--chain` Specify the blockchain on which the iApp will be deployed (overrides defaultChain configuration which is `bellecour`). Possible values are `bellecour|arbitrum-sepolia-testnet|arbitrum-mainnet`
146
+
147
+
> [!IMPORTANT]
148
+
> To use a chain other than `bellecour`, you must pass (or set in your system) `EXPERIMENTAL_NETWORKS=true` before the `iApp` command.
149
+
150
+
---
151
+
152
+
### `debug`
153
+
154
+
Command:
155
+
156
+
```sh
157
+
iapp debug <taskId>
158
+
```
159
+
160
+
Description: Retrieve detailed execution logs from worker nodes for a specific task.
161
+
162
+
---
163
+
164
+
### `mock`
165
+
166
+
Command:
167
+
168
+
```sh
169
+
iapp mock <inputType>
170
+
```
171
+
172
+
Description: Create a mocked input for test.
173
+
174
+
---
175
+
176
+
### `wallet`
177
+
178
+
Command:
179
+
180
+
```sh
181
+
iapp wallet <action>
182
+
```
183
+
184
+
Description: Manage wallet.
185
+
186
+
Options for `<action>` :
187
+
188
+
-`import` import a new wallet by providing a private key.
189
+
-`select` select a wallet from your personnal keystore.
0 commit comments