Skip to content

Commit 730c49b

Browse files
authored
feat: Migrate arbitrum-sepolia-testnet from experimental to non-experimental network (#242)
* chore: update README and config for experimental networks support * chore: remove unused import for experimental networks feature * chore: update iexec dependency to version 8.20.0
1 parent 9a4bb0e commit 730c49b

File tree

4 files changed

+11
-21
lines changed

4 files changed

+11
-21
lines changed

cli/README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,6 @@ Options:
113113
(overrides defaultChain configuration which is `bellecour`). Possible values
114114
are `bellecour|arbitrum-sepolia-testnet|arbitrum-mainnet`
115115

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

121118
### `run`
@@ -148,9 +145,6 @@ Options:
148145
(overrides defaultChain configuration which is `bellecour`). Possible values
149146
are `bellecour|arbitrum-sepolia-testnet|arbitrum-mainnet`
150147

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

156150
### `debug`

cli/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"dockerode": "^4.0.5",
4141
"ethers": "^6.13.5",
4242
"figlet": "^1.8.1",
43-
"iexec": "^8.18.0",
43+
"iexec": "^8.20.0",
4444
"jszip": "^3.10.1",
4545
"magic-bytes.js": "^1.10.0",
4646
"msgpackr": "^1.11.2",

cli/src/config/config.ts

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import { useExperimentalNetworks } from '../utils/featureFlags.js';
2-
31
export const SCONE_TAG = ['tee', 'scone'];
42
export const DEFAULT_SCONE_VERSION = 'v5.9';
53

@@ -90,14 +88,12 @@ export const CHAINS_CONFIGURATIONS: Record<string, ChainConfig> = {
9088
iexecExplorerUrl: 'https://explorer.iex.ec/arbitrum-mainnet',
9189
workerpool: '0x2c06263943180cc024daffeee15612db6e5fd248',
9290
},
93-
...(useExperimentalNetworks && {
94-
'arbitrum-sepolia-testnet': {
95-
rpcHostUrl: 'https://sepolia-rollup.arbitrum.io/rpc',
96-
ipfsGatewayUrl: 'https://ipfs-gateway.arbitrum-sepolia-testnet.iex.ec',
97-
iexecExplorerUrl: 'https://explorer.iex.ec/arbitrum-sepolia-testnet',
98-
workerpool: '0xB967057a21dc6A66A29721d96b8Aa7454B7c383F',
99-
},
100-
}),
91+
'arbitrum-sepolia-testnet': {
92+
rpcHostUrl: 'https://sepolia-rollup.arbitrum.io/rpc',
93+
ipfsGatewayUrl: 'https://ipfs-gateway.arbitrum-sepolia-testnet.iex.ec',
94+
iexecExplorerUrl: 'https://explorer.iex.ec/arbitrum-sepolia-testnet',
95+
workerpool: '0xB967057a21dc6A66A29721d96b8Aa7454B7c383F',
96+
},
10197
};
10298

10399
export const SUPPORTED_CHAINS = Object.keys(CHAINS_CONFIGURATIONS);

0 commit comments

Comments
 (0)