From b83eaab7f763b1b405be792e261afc82590a1200 Mon Sep 17 00:00:00 2001 From: Le-Caignec Date: Mon, 13 Oct 2025 13:41:51 +0200 Subject: [PATCH 1/3] chore: update README and config for experimental networks support --- cli/README.md | 6 ------ cli/src/config/config.ts | 14 ++++++-------- 2 files changed, 6 insertions(+), 14 deletions(-) diff --git a/cli/README.md b/cli/README.md index c61b7547..02e21a51 100644 --- a/cli/README.md +++ b/cli/README.md @@ -113,9 +113,6 @@ Options: (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. - --- ### `run` @@ -148,9 +145,6 @@ Options: (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. - --- ### `debug` diff --git a/cli/src/config/config.ts b/cli/src/config/config.ts index 7cbb801b..2fd459df 100644 --- a/cli/src/config/config.ts +++ b/cli/src/config/config.ts @@ -90,14 +90,12 @@ export const CHAINS_CONFIGURATIONS: Record = { iexecExplorerUrl: 'https://explorer.iex.ec/arbitrum-mainnet', workerpool: '0x2c06263943180cc024daffeee15612db6e5fd248', }, - ...(useExperimentalNetworks && { - 'arbitrum-sepolia-testnet': { - rpcHostUrl: 'https://sepolia-rollup.arbitrum.io/rpc', - ipfsGatewayUrl: 'https://ipfs-gateway.arbitrum-sepolia-testnet.iex.ec', - iexecExplorerUrl: 'https://explorer.iex.ec/arbitrum-sepolia-testnet', - workerpool: '0xB967057a21dc6A66A29721d96b8Aa7454B7c383F', - }, - }), + 'arbitrum-sepolia-testnet': { + rpcHostUrl: 'https://sepolia-rollup.arbitrum.io/rpc', + ipfsGatewayUrl: 'https://ipfs-gateway.arbitrum-sepolia-testnet.iex.ec', + iexecExplorerUrl: 'https://explorer.iex.ec/arbitrum-sepolia-testnet', + workerpool: '0xB967057a21dc6A66A29721d96b8Aa7454B7c383F', + }, }; export const SUPPORTED_CHAINS = Object.keys(CHAINS_CONFIGURATIONS); From 201a1e921d0adfd6dc013cf793de767fd3ccd836 Mon Sep 17 00:00:00 2001 From: Le-Caignec Date: Mon, 13 Oct 2025 13:45:48 +0200 Subject: [PATCH 2/3] chore: remove unused import for experimental networks feature --- cli/src/config/config.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/cli/src/config/config.ts b/cli/src/config/config.ts index 2fd459df..5d339c40 100644 --- a/cli/src/config/config.ts +++ b/cli/src/config/config.ts @@ -1,5 +1,3 @@ -import { useExperimentalNetworks } from '../utils/featureFlags.js'; - export const SCONE_TAG = ['tee', 'scone']; export const DEFAULT_SCONE_VERSION = 'v5.9'; From 33546f611855cd7a3146e66d61169cefb170fe1e Mon Sep 17 00:00:00 2001 From: Le-Caignec Date: Tue, 14 Oct 2025 11:53:00 +0200 Subject: [PATCH 3/3] chore: update iexec dependency to version 8.20.0 --- cli/package-lock.json | 8 ++++---- cli/package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/cli/package-lock.json b/cli/package-lock.json index 1b7f15e3..6019722f 100644 --- a/cli/package-lock.json +++ b/cli/package-lock.json @@ -16,7 +16,7 @@ "dockerode": "^4.0.5", "ethers": "^6.13.5", "figlet": "^1.8.1", - "iexec": "^8.18.0", + "iexec": "^8.20.0", "jszip": "^3.10.1", "magic-bytes.js": "^1.10.0", "msgpackr": "^1.11.2", @@ -3044,9 +3044,9 @@ "license": "BSD-3-Clause" }, "node_modules/iexec": { - "version": "8.18.0", - "resolved": "https://registry.npmjs.org/iexec/-/iexec-8.18.0.tgz", - "integrity": "sha512-lj2La67p0IKyCHhpV4F2SZD7kmE1AFhGmD26jf8si7/sTelrXun3wNTun6WAOEO9uMi49J0AlA6MxUNBxuCflg==", + "version": "8.20.0", + "resolved": "https://registry.npmjs.org/iexec/-/iexec-8.20.0.tgz", + "integrity": "sha512-ce0l1eJWqOj85kWXbUJ7yF6IhbHiHz1hRqLdDEAJhCvlIAArdyrwJcWtXz6gmuYoSQ0F8gkKvEWC/FHg4Gr/8w==", "license": "Apache-2.0", "dependencies": { "@ensdomains/ens-contracts": "^1.2.5", diff --git a/cli/package.json b/cli/package.json index 921c6c17..4246823b 100644 --- a/cli/package.json +++ b/cli/package.json @@ -40,7 +40,7 @@ "dockerode": "^4.0.5", "ethers": "^6.13.5", "figlet": "^1.8.1", - "iexec": "^8.18.0", + "iexec": "^8.20.0", "jszip": "^3.10.1", "magic-bytes.js": "^1.10.0", "msgpackr": "^1.11.2",