Skip to content

Commit b83eaab

Browse files
committed
chore: update README and config for experimental networks support
1 parent 9a4bb0e commit b83eaab

File tree

2 files changed

+6
-14
lines changed

2 files changed

+6
-14
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/src/config/config.ts

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -90,14 +90,12 @@ export const CHAINS_CONFIGURATIONS: Record<string, ChainConfig> = {
9090
iexecExplorerUrl: 'https://explorer.iex.ec/arbitrum-mainnet',
9191
workerpool: '0x2c06263943180cc024daffeee15612db6e5fd248',
9292
},
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-
}),
93+
'arbitrum-sepolia-testnet': {
94+
rpcHostUrl: 'https://sepolia-rollup.arbitrum.io/rpc',
95+
ipfsGatewayUrl: 'https://ipfs-gateway.arbitrum-sepolia-testnet.iex.ec',
96+
iexecExplorerUrl: 'https://explorer.iex.ec/arbitrum-sepolia-testnet',
97+
workerpool: '0xB967057a21dc6A66A29721d96b8Aa7454B7c383F',
98+
},
10199
};
102100

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

0 commit comments

Comments
 (0)