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
6 changes: 0 additions & 6 deletions cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down Expand Up @@ -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`
Expand Down
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.18.0",
"iexec": "^8.20.0",
"jszip": "^3.10.1",
"magic-bytes.js": "^1.10.0",
"msgpackr": "^1.11.2",
Expand Down
16 changes: 6 additions & 10 deletions cli/src/config/config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import { useExperimentalNetworks } from '../utils/featureFlags.js';

export const SCONE_TAG = ['tee', 'scone'];
export const DEFAULT_SCONE_VERSION = 'v5.9';

Expand Down Expand Up @@ -90,14 +88,12 @@ export const CHAINS_CONFIGURATIONS: Record<string, ChainConfig> = {
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);