From 28a63b5b527058394b054d8fcf44b29d6aa3d033 Mon Sep 17 00:00:00 2001 From: Keyrxng <106303466+Keyrxng@users.noreply.github.com> Date: Fri, 26 Jul 2024 10:16:17 +0100 Subject: [PATCH] chore: use blockcscan for multichain balance overview --- static/scripts/rewards/app-state.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/scripts/rewards/app-state.ts b/static/scripts/rewards/app-state.ts index d41cb885..3849aafa 100644 --- a/static/scripts/rewards/app-state.ts +++ b/static/scripts/rewards/app-state.ts @@ -43,9 +43,9 @@ export class AppState { get currentExplorerUrl(): string { if (!this.reward) { - return "https://etherscan.io"; + return "https://blockscan.io"; } - return networkExplorers[this.reward.networkId] || "https://etherscan.io"; + return networkExplorers[this.reward.networkId] || "https://blockscan.io"; } nextPermit(): Permit | null {