// Copyright 2017-2026 @pezkuwi/app-staking-async authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; import { Icon, styled } from '@pezkuwi/react-components'; interface Props { children?: React.ReactNode; className?: string; withIcon?: boolean; } function StakingAsyncOverview ({ children, className = '', withIcon = true }: Props): React.ReactElement { return ( {withIcon && } Staking Async is Pezkuwi's staking system which elects validators for the Relay Chain, on AssetHub. The actual collators of the AssetHub teyrchain are managed by the collator-selection system. To nominate a Relay Chain validator, please use this page and everything works as before. To setup a validator, please see{' '} this guide .

For more information about Staking Async and AssetHub migration, please see the{' '} Asset Hub Migration FAQ . {children}
); } const StyledArticle = styled.article` max-width: 50vw; margin-inline: auto !important; .ui--Icon { color: rgba(255, 196, 12, 1); margin-right: 0.5rem; } `; export default React.memo(StakingAsyncOverview);