From 87eca4435bd67ef550e1f729a7e800be3c9628bc Mon Sep 17 00:00:00 2001 From: Kurdistan Tech Ministry Date: Thu, 19 Feb 2026 16:53:29 +0300 Subject: [PATCH] fix: route AH staking stats to AH SubQuery endpoint The staking dashboard was showing INACTIVE because all Pezkuwi chains (including Asset Hub) were routed to the relay chain SubQuery for staking stats. The relay SubQuery only has relay chain activeStakers, not AH pool stash accounts. Split the override so Asset Hub queries its own SubQuery endpoint which has the pool stash data. --- staking/global_config.json | 7 ++++--- staking/global_config_dev.json | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/staking/global_config.json b/staking/global_config.json index 8587bce..db90aba 100644 --- a/staking/global_config.json +++ b/staking/global_config.json @@ -4,9 +4,10 @@ "multiStakingApiUrl": "https://subquery-multi-staking-prod.novasama-tech.org", "stakingApiOverrides": { "https://subquery.pezkuwichain.io": [ - "1aa94987791a5544e9667ec249d2cef1b8fdd6083c85b93fc37892d54a1156ca", - "e7c15092dcbe3f320260ddbbc685bfceed9125a3b3d8436db2766201dec3b949", - "69a8d025ab7b63363935d7d9397e0f652826c94271c1bc55c4fdfe72cccf1cfa" + "1aa94987791a5544e9667ec249d2cef1b8fdd6083c85b93fc37892d54a1156ca" + ], + "https://subquery.pezkuwichain.io/assethub": [ + "e7c15092dcbe3f320260ddbbc685bfceed9125a3b3d8436db2766201dec3b949" ] } } diff --git a/staking/global_config_dev.json b/staking/global_config_dev.json index 7c24fea..0e393a5 100644 --- a/staking/global_config_dev.json +++ b/staking/global_config_dev.json @@ -4,9 +4,10 @@ "multiStakingApiUrl": "https://subquery-multi-staking-stg.novasama-tech.org", "stakingApiOverrides": { "https://subquery.pezkuwichain.io": [ - "1aa94987791a5544e9667ec249d2cef1b8fdd6083c85b93fc37892d54a1156ca", - "e7c15092dcbe3f320260ddbbc685bfceed9125a3b3d8436db2766201dec3b949", - "69a8d025ab7b63363935d7d9397e0f652826c94271c1bc55c4fdfe72cccf1cfa" + "1aa94987791a5544e9667ec249d2cef1b8fdd6083c85b93fc37892d54a1156ca" + ], + "https://subquery.pezkuwichain.io/assethub": [ + "e7c15092dcbe3f320260ddbbc685bfceed9125a3b3d8436db2766201dec3b949" ] } }