mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-07-30 01:55: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
69 lines
2.2 KiB
TypeScript
69 lines
2.2 KiB
TypeScript
// Copyright 2017-2026 @pezkuwi/apps-routing authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type { ApiPromise } from '@pezkuwi/api';
|
|
import type { PezspStakingExposure } from '@pezkuwi/types/lookup';
|
|
import type { Route, TFunction } from './types.js';
|
|
|
|
import Component from '@pezkuwi/app-staking2';
|
|
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 {
|
|
// we need a known Exposure type
|
|
const { others: [{ value, who }], own, total } = api.registry.createType<PezspStakingExposure>(
|
|
unwrapStorageType(api.registry, api.query.staking.erasStakers.creator.meta.type),
|
|
{ others: [{ value: BN_ONE, who: ZERO_ACCOUNT }], own: BN_ONE, total: BN_ONE }
|
|
);
|
|
|
|
assert(total && own && value && who && total.eq(BN_ONE) && own.eq(BN_ONE) && value.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;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
export default function create (t: TFunction): Route {
|
|
return {
|
|
Component,
|
|
display: {
|
|
isHidden: true,
|
|
needsApi: [
|
|
'query.session.validators',
|
|
'query.staking.erasStakers',
|
|
'tx.staking.bond'
|
|
],
|
|
needsApiCheck
|
|
},
|
|
group: 'network',
|
|
icon: 'certificate',
|
|
name: 'test-staking',
|
|
text: t('nav.staking', 'Staking', { ns: 'apps-routing' })
|
|
};
|
|
}
|