mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-07-29 14:15:40 +00:00
971df8edba
- Remove all 3rd party parachain configurations from endpoints: - productionRelayPolkadot.ts: Keep only system parachains - productionRelayDicle.ts: Keep only system parachains - testingRelayZagros.ts: Keep only system parachains - testingRelayTeyrChain.ts: Keep only system parachains - Update domain references: - polkadot.js.org → pezkuwichain.app - wiki.polkadot.network → wiki.pezkuwichain.io - dotapps.io → pezkuwichain.app - statement.polkadot.network → docs.pezkuwichain.io/statement - support.polkadot.network → docs.pezkuwichain.io - Update repository references: - github.com/pezkuwi-js/apps → github.com/pezkuwichain/pwap - Rename system parachains to Pezkuwi ecosystem: - PolkadotAssetHub → PezkuwiAssetHub - polkadotBridgeHub → pezkuwiBridgeHub - polkadotCollectives → pezkuwiCollectives - polkadotCoretime → pezkuwiCoretime - polkadotPeople → pezkuwiPeople - Update network name in claims utility: - Polkadot → Pezkuwi
87 lines
2.9 KiB
TypeScript
87 lines
2.9 KiB
TypeScript
// Copyright 2017-2026 @pezkuwi/apps-routing authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type { ApiPromise } from '@pezkuwi/api';
|
|
import type { u32, Vec } from '@pezkuwi/types';
|
|
import type { PezspStakingPagedExposureMetadata } from '@pezkuwi/types/lookup';
|
|
import type { Route, TFunction } from './types.js';
|
|
|
|
import Component from '@pezkuwi/app-staking';
|
|
import { ZERO_ACCOUNT } from '@pezkuwi/react-hooks/useWeight';
|
|
import { unwrapStorageType } from '@pezkuwi/types/util';
|
|
import { assert, BN_ONE } from '@pezkuwi/util';
|
|
|
|
function needsApiCheck (api: ApiPromise): boolean {
|
|
try {
|
|
// Hide for every Asset Hub chain and for Relay chains which have stakingAhClient storagr
|
|
if (api.query.stakingAhClient || api.tx.stakingRcClient) {
|
|
return false;
|
|
}
|
|
|
|
// we need a known Exposure type
|
|
const { nominatorCount, own, pageCount, total } = api.registry.createType<PezspStakingPagedExposureMetadata>(
|
|
unwrapStorageType(api.registry, api.query.staking.erasStakersOverview.creator.meta.type),
|
|
{ nominatorCount: BN_ONE, own: BN_ONE, pageCount: BN_ONE, total: BN_ONE }
|
|
);
|
|
|
|
assert(total && own && nominatorCount && pageCount && total.eq(BN_ONE) && own.eq(BN_ONE), 'Needs a known Exposure type');
|
|
} catch {
|
|
console.warn('Unable to create known-shape Exposure type, disabling staking route');
|
|
|
|
return false;
|
|
}
|
|
|
|
try {
|
|
// we need to be able to bond
|
|
if (api.tx.staking.bond.meta.args.length === 3) {
|
|
// previous generation, controller account is required
|
|
// @ts-expect-error Previous generation
|
|
api.tx.staking.bond(ZERO_ACCOUNT, BN_ONE, { Account: ZERO_ACCOUNT });
|
|
} else if (api.tx.staking.bond.meta.args.length === 2) {
|
|
// current, no controller account
|
|
// @ts-expect-error Account variant is runtime converted
|
|
api.tx.staking.bond(BN_ONE, { Account: ZERO_ACCOUNT });
|
|
} else {
|
|
// unknown
|
|
return false;
|
|
}
|
|
} catch {
|
|
console.warn('Unable to create staking bond transaction, disabling staking route');
|
|
|
|
return false;
|
|
}
|
|
|
|
// For compatibility - `api.query.staking.ledger` returns `legacyClaimedRewards` instead of `claimedRewards` as of v1.4
|
|
try {
|
|
const v = api.registry.createType<Vec<u32>>(
|
|
unwrapStorageType(api.registry, api.query.staking.claimedRewards.creator.meta.type),
|
|
[0]
|
|
);
|
|
|
|
assert(v.eq([0]), 'Needs a legacyClaimedRewards array');
|
|
} catch {
|
|
console.warn('No known legacyClaimedRewards or claimedRewards inside staking ledger, disabling staking route');
|
|
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
export default function create (t: TFunction): Route {
|
|
return {
|
|
Component,
|
|
display: {
|
|
needsApi: [
|
|
'query.staking.erasStakersOverview',
|
|
'tx.staking.bond'
|
|
],
|
|
needsApiCheck
|
|
},
|
|
group: 'network',
|
|
icon: 'certificate',
|
|
name: 'staking',
|
|
text: t('nav.staking', 'Staking', { ns: 'apps-routing' })
|
|
};
|
|
}
|