Interface CheckConnectionResult

Interface representing the result of Checkout.checkIsWalletConnected.

interface CheckConnectionResult {
    isConnected: boolean;
    walletAddress: string;
}

Properties

isConnected: boolean

A boolean indicating the connection status of the Web3 provider.

walletAddress: string

The wallet address used to check the connection.