Documentation
    Preparing search index...

    Type Alias SelectedWalletEvent

    Represents the event triggered when the wallet is selected.

    type SelectedWalletEvent = {
        client_id: string | null;
        custom_data: Version;
        trace_id: string | null;
        type: "selected-wallet";
        visible_wallets: string[];
        wallet_redirect_link?: string;
        wallet_redirect_method?: "tg_link" | "external_link";
        wallet_type: string | null;
        wallets_menu: "explicit_wallet" | "main_screen" | "other_wallets";
    }
    Index

    Properties

    client_id: string | null

    The unique client identifier associated with the session or user.

    custom_data: Version

    Custom metadata containing versioning or contextual data for the modal.

    trace_id: string | null

    Unique identifier used for tracking a specific user flow.

    type: "selected-wallet"

    Event type.

    visible_wallets: string[]

    A list of wallet identifiers that are currently visible in the modal.

    wallet_redirect_link?: string

    URL used to open the wallet

    wallet_redirect_method?: "tg_link" | "external_link"

    Redirect method: tg_link, external_link

    wallet_type: string | null

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

    wallets_menu: "explicit_wallet" | "main_screen" | "other_wallets"