Skip to content

Commit 410b4bf

Browse files
fix: remove allowExperimentalNetworks option
1 parent bb5249f commit 410b4bf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"check-format": "prettier --check \"src/**/*.ts\""
1212
},
1313
"dependencies": {
14-
"@iexec/dataprotector": "^2.0.0-beta.13",
14+
"@iexec/dataprotector": "^2.0.0-beta.20",
1515
"iexec": "^8.20.0",
1616
"react": "^18.2.0",
1717
"react-dom": "^18.2.0"

src/externals/dataProtectorClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export async function initDataProtectorClient({
2727
// Only reinitialize if chain has changed
2828
if (currentChainId !== chainId) {
2929
try {
30-
const dataProtectorParent = new IExecDataProtector(provider as Eip1193Provider, { allowExperimentalNetworks: true });
30+
const dataProtectorParent = new IExecDataProtector(provider as Eip1193Provider);
3131
iExecDataProtectorCore = dataProtectorParent.core;
3232
currentChainId = chainId || null;
3333
} catch (error) {

0 commit comments

Comments
 (0)