Skip to content

Commit 60b339c

Browse files
feat: add support for arbitrum-mainnet (#221)
* feat: add support for arbitrum-mainnet * style: update documentation formatting --------- Co-authored-by: abbesBenayache <[email protected]>
1 parent a30826d commit 60b339c

File tree

7 files changed

+25
-20
lines changed

7 files changed

+25
-20
lines changed

api/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.

api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"dockerode": "^4.0.5",
1818
"ethers": "^6.13.5",
1919
"express": "^5.1.0",
20-
"iexec": "^8.15.0",
20+
"iexec": "^8.18.0",
2121
"jwt-decode": "^4.0.0",
2222
"msgpackr": "^1.11.2",
2323
"pino": "^9.6.0",

api/src/constants/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export type SconeVersion = 'v5' | 'v5.9';
1414

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

2020
// This SCONIFY_IMAGE depends on Linux alpine:3.15

cli/README.md

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,12 @@ Description: Deploy your iApp on the iExec protocol in debug mode.
109109

110110
Options:
111111

112-
- 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`
112+
- use `--chain` Specify the blockchain on which the iApp will be deployed
113+
(overrides defaultChain configuration which is `bellecour`). Possible values
114+
are `bellecour|arbitrum-sepolia-testnet|arbitrum-mainnet`
113115

114-
> [!IMPORTANT]
115-
> To use a chain other than `bellecour`, you must pass (or set in your system) `EXPERIMENTAL_NETWORKS=true` before the `iApp` command.
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.
116118
117119
---
118120

@@ -142,10 +144,12 @@ Options:
142144
[protected data](https://protocol.docs.iex.ec/for-developers/technical-references/application-io#protected-data),
143145
include the `--protectedData` option followed by the address of the protected
144146
data.
145-
- 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`
147+
- use `--chain` Specify the blockchain on which the iApp will be deployed
148+
(overrides defaultChain configuration which is `bellecour`). Possible values
149+
are `bellecour|arbitrum-sepolia-testnet|arbitrum-mainnet`
146150

147-
> [!IMPORTANT]
148-
> To use a chain other than `bellecour`, you must pass (or set in your system) `EXPERIMENTAL_NETWORKS=true` before the `iApp` command.
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.
149153
150154
---
151155

@@ -157,7 +161,8 @@ Command:
157161
iapp debug <taskId>
158162
```
159163

160-
Description: Retrieve detailed execution logs from worker nodes for a specific task.
164+
Description: Retrieve detailed execution logs from worker nodes for a specific
165+
task.
161166

162167
---
163168

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

184189
Description: Manage wallet.
185190

186-
Options for `<action>` :
191+
Options for `<action>` :
187192

188193
- `import` import a new wallet by providing a private key.
189194
- `select` select a wallet from your personnal keystore.

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.17.1",
43+
"iexec": "^8.18.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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export const CHAINS_CONFIGURATIONS: Record<string, ChainConfig> = {
9292
smsDebugUrl: 'https://sms-debug.arbitrum-mainnet.iex.ec',
9393
ipfsGatewayUrl: 'https://ipfs-gateway.arbitrum-mainnet.iex.ec',
9494
iexecExplorerUrl: 'https://explorer.iex.ec/arbitrum-mainnet',
95-
workerpoolDebug: 'TODO', // TODO: Update with actual debug workerpool address
95+
workerpoolDebug: '0xAaA90d37034fD1ea27D5eF2879f217fB6fD7F7Ca',
9696
},
9797
...(useExperimentalNetworks && {
9898
'arbitrum-sepolia-testnet': {

0 commit comments

Comments
 (0)