From b62c0f28d7138db43e0808bcc7dd2c10871bc2a3 Mon Sep 17 00:00:00 2001 From: Pierre Jeanjacquot <26487010+PierreJeanjacquot@users.noreply.github.com> Date: Thu, 16 Apr 2026 17:17:47 +0200 Subject: [PATCH 1/2] chore(deps): update iexec --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 4237403..86d58aa 100644 --- a/package-lock.json +++ b/package-lock.json @@ -38,7 +38,7 @@ "class-variance-authority": "^0.7.1", "clsx": "^2.1.1", "graphql": "^16.12.0", - "iexec": "^8.23.0", + "iexec": "^8.24.0", "lucide-react": "^0.556.0", "prettier-plugin-tailwindcss": "^0.7.2", "react": "^19.2.1", @@ -10560,9 +10560,9 @@ "license": "BSD-3-Clause" }, "node_modules/iexec": { - "version": "8.23.0", - "resolved": "https://registry.npmjs.org/iexec/-/iexec-8.23.0.tgz", - "integrity": "sha512-59NtZBChueZfSEFr2L4X+Pi4Be2c92hAxkgsYDqhMgbPXFKNxLB63ZrWF/kvnZqwX4LZbgXtbNBRvxHcMEZjNQ==", + "version": "8.24.0", + "resolved": "https://registry.npmjs.org/iexec/-/iexec-8.24.0.tgz", + "integrity": "sha512-XMi+kZlRHPB5prubA7PQvhEmKxENN/5P0+gfe96eKKUWZSb3qllzi14btRE/MEmUXwsQok9kpIOq9IajUY8VQQ==", "license": "Apache-2.0", "dependencies": { "@multiformats/multiaddr": "^13.0.1", diff --git a/package.json b/package.json index fd2ee13..da8c55c 100644 --- a/package.json +++ b/package.json @@ -49,7 +49,7 @@ "class-variance-authority": "^0.7.1", "clsx": "^2.1.1", "graphql": "^16.12.0", - "iexec": "^8.23.0", + "iexec": "^8.24.0", "lucide-react": "^0.556.0", "prettier-plugin-tailwindcss": "^0.7.2", "react": "^19.2.1", From bbf44bd41c7ea66f0a9ad6a71c7808b5b16b6fc5 Mon Sep 17 00:00:00 2001 From: Pierre Jeanjacquot <26487010+PierreJeanjacquot@users.noreply.github.com> Date: Thu, 16 Apr 2026 17:25:57 +0200 Subject: [PATCH 2/2] fix: disable deposit on bellecour --- src/config.ts | 1 + src/modules/account/getTabs.tsx | 1 + 2 files changed, 2 insertions(+) diff --git a/src/config.ts b/src/config.ts index e824d05..ab2c4c8 100644 --- a/src/config.ts +++ b/src/config.ts @@ -47,6 +47,7 @@ export const SUPPORTED_CHAINS = [ }, { id: 134, + deprecated: true, name: 'Bellecour', slug: 'bellecour', color: '#95A4FC', diff --git a/src/modules/account/getTabs.tsx b/src/modules/account/getTabs.tsx index 8f5fa76..1d4685d 100644 --- a/src/modules/account/getTabs.tsx +++ b/src/modules/account/getTabs.tsx @@ -192,6 +192,7 @@ export function getTabs({ }, ].filter((tab, index) => { const chain = getChainFromId(chainId); + if (index === 0 && (!chain || chain.deprecated)) return false; // hide deposit if chain is deprecated if (index === 2 && (!chain || !chain.bridge)) return false; return true; });