@reown/appkit-controllers
Version:
The full stack toolkit to build onchain app UX.
25 lines (24 loc) • 734 B
TypeScript
import type { ChainControllerState } from '../controllers/ChainController.js';
export declare const CUSTOM_DEEPLINK_WALLETS: {
PHANTOM: {
id: string;
url: string;
};
SOLFLARE: {
id: string;
url: string;
};
COINBASE: {
id: string;
url: string;
};
};
export declare const MobileWalletUtil: {
/**
* Handles mobile wallet redirection for wallets that have Universal Links and doesn't support WalletConnect Deep Links.
*
* @param {string} id - The id of the wallet.
* @param {ChainNamespace} namespace - The namespace of the chain.
*/
handleMobileDeeplinkRedirect(id: string, namespace: ChainControllerState["activeChain"]): void;
};