From 6fdeaa4f033a8786d2e8dd2cef4988c03764b478 Mon Sep 17 00:00:00 2001 From: Keyrxng <106303466+Keyrxng@users.noreply.github.com> Date: Fri, 26 Jul 2024 09:59:50 +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..54c0c354 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.com"; } - return networkExplorers[this.reward.networkId] || "https://etherscan.io"; + return networkExplorers[this.reward.networkId] || "https://blockscan.com"; } nextPermit(): Permit | null {