Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions api/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"dockerode": "^4.0.5",
"ethers": "^6.13.5",
"express": "^5.1.0",
"iexec": "^8.15.0",
"iexec": "^8.18.0",
"jwt-decode": "^4.0.0",
"msgpackr": "^1.11.2",
"pino": "^9.6.0",
Expand Down
2 changes: 1 addition & 1 deletion api/src/constants/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export type SconeVersion = 'v5' | 'v5.9';

export const SCONIFY_IMAGE_VERSIONS: Record<SconeVersion, string> = {
v5: '5.7.6-v15',
'v5.9': '5.9.0-v15',
'v5.9': '5.9.1-v16',
};

// This SCONIFY_IMAGE depends on Linux alpine:3.15
Expand Down
21 changes: 13 additions & 8 deletions cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,12 @@ Description: Deploy your iApp on the iExec protocol in debug mode.

Options:

- 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`
- 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`

> [!IMPORTANT]
> To use a chain other than `bellecour`, you must pass (or set in your system) `EXPERIMENTAL_NETWORKS=true` before the `iApp` command.
> [!IMPORTANT] To use a chain other than `bellecour`, you must pass (or set in
> your system) `EXPERIMENTAL_NETWORKS=true` before the `iApp` command.

---

Expand Down Expand Up @@ -142,10 +144,12 @@ Options:
[protected data](https://protocol.docs.iex.ec/for-developers/technical-references/application-io#protected-data),
include the `--protectedData` option followed by the address of the protected
data.
- 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`
- 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`

> [!IMPORTANT]
> To use a chain other than `bellecour`, you must pass (or set in your system) `EXPERIMENTAL_NETWORKS=true` before the `iApp` command.
> [!IMPORTANT] To use a chain other than `bellecour`, you must pass (or set in
> your system) `EXPERIMENTAL_NETWORKS=true` before the `iApp` command.

---

Expand All @@ -157,7 +161,8 @@ Command:
iapp debug <taskId>
```

Description: Retrieve detailed execution logs from worker nodes for a specific task.
Description: Retrieve detailed execution logs from worker nodes for a specific
task.

---

Expand All @@ -183,7 +188,7 @@ iapp wallet <action>

Description: Manage wallet.

Options for `<action>` :
Options for `<action>` :

- `import` import a new wallet by providing a private key.
- `select` select a wallet from your personnal keystore.
8 changes: 4 additions & 4 deletions cli/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"dockerode": "^4.0.5",
"ethers": "^6.13.5",
"figlet": "^1.8.1",
"iexec": "^8.17.1",
"iexec": "^8.18.0",
"jszip": "^3.10.1",
"magic-bytes.js": "^1.10.0",
"msgpackr": "^1.11.2",
Expand Down
2 changes: 1 addition & 1 deletion cli/src/config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export const CHAINS_CONFIGURATIONS: Record<string, ChainConfig> = {
smsDebugUrl: 'https://sms-debug.arbitrum-mainnet.iex.ec',
ipfsGatewayUrl: 'https://ipfs-gateway.arbitrum-mainnet.iex.ec',
iexecExplorerUrl: 'https://explorer.iex.ec/arbitrum-mainnet',
workerpoolDebug: 'TODO', // TODO: Update with actual debug workerpool address
workerpoolDebug: '0xAaA90d37034fD1ea27D5eF2879f217fB6fD7F7Ca',
},
...(useExperimentalNetworks && {
'arbitrum-sepolia-testnet': {
Expand Down