Fix Pezkuwi staking configuration to match Polkadot pattern

- Pezkuwi Relay Chain: Add stakingMaxElectingVoters: 22500
- Pezkuwi Asset Hub HEZ: Change staking from ["nomination-pools"] to ["relaychain"]
- Pezkuwi Asset Hub: Add stakingMaxElectingVoters: 22500

This fixes the "Loading staking info" issue where findStakingTypeBackingNominationPools()
was failing because nomination-pools had no backing staking type.
This commit is contained in:
2026-02-10 00:01:21 +03:00
parent c805a4a9ee
commit 5a917511cc
+4 -2
View File
@@ -56,7 +56,8 @@
"themeColor": "#009639", "themeColor": "#009639",
"defaultBlockTimeMillis": 6000, "defaultBlockTimeMillis": 6000,
"feeViaRuntimeCall": true, "feeViaRuntimeCall": true,
"disabledCheckMetadataHash": true "disabledCheckMetadataHash": true,
"stakingMaxElectingVoters": 22500
} }
}, },
{ {
@@ -130,7 +131,7 @@
"name": "Hezkurd", "name": "Hezkurd",
"priceId": "hezkurd", "priceId": "hezkurd",
"staking": [ "staking": [
"nomination-pools" "relaychain"
], ],
"type": "native", "type": "native",
"icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/HEZ.png", "icon": "https://raw.githubusercontent.com/pezkuwichain/pezkuwi-wallet-utils/main/icons/tokens/HEZ.png",
@@ -220,6 +221,7 @@
"feeViaRuntimeCall": true, "feeViaRuntimeCall": true,
"disabledCheckMetadataHash": true, "disabledCheckMetadataHash": true,
"relaychainAsNative": true, "relaychainAsNative": true,
"stakingMaxElectingVoters": 22500,
"timelineChain": "bb4a61ab0c4b8c12f5eab71d0c86c482e03a275ecdafee678dea712474d33d75" "timelineChain": "bb4a61ab0c4b8c12f5eab71d0c86c482e03a275ecdafee678dea712474d33d75"
} }
}, },