Type alias ConnectionInfo

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;
}

Information about a connected wallet.

Type declaration

  • auth_type: AuthType

    Requested authentication types.

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

    Custom data for the connection.

  • wallet_address: string | null

    Connected wallet address.

  • wallet_type: string | null

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

  • wallet_version: string | null

    Wallet version.

Generated using TypeDoc