Documentation
    Preparing search index...

    Type Alias ConnectionInfo

    Information about a connected wallet.

    type ConnectionInfo = {
        auth_type: AuthType;
        custom_data: {
            chain_id: string | null;
            provider: "http" | "injected" | null;
        } & Version;
        wallet_address: string
        | null;
        wallet_type: string | null;
        wallet_version: string | null;
    }
    Index

    Properties

    auth_type: AuthType

    Requested authentication types.

    custom_data: { chain_id: string | null; provider: "http" | "injected" | null } & Version

    Custom data for the connection.

    Type declaration

    • chain_id: string | null

      Connected chain ID.

    • provider: "http" | "injected" | null

      Wallet provider.

    wallet_address: string | null

    Connected wallet address.

    wallet_type: string | null

    Wallet type: 'tonkeeper', 'tonhub', etc.

    wallet_version: string | null

    Wallet version.