@mysten/dapp-kit
Version:
A collection of React hooks and components for interacting with the Sui blockchain and wallets.
9 lines (8 loc) • 444 B
TypeScript
import type { WalletWithRequiredFeatures } from '@mysten/wallet-standard';
type ConnectionStatusProps = {
selectedWallet: WalletWithRequiredFeatures;
hadConnectionError: boolean;
onRetryConnection: (selectedWallet: WalletWithRequiredFeatures) => void;
};
export declare function ConnectionStatus({ selectedWallet, hadConnectionError, onRetryConnection, }: ConnectionStatusProps): import("react/jsx-runtime").JSX.Element;
export {};