@aptos-labs/wallet-adapter-core
Version: 
Aptos Wallet Adapter Core
20 lines • 990 B
TypeScript
export declare enum WalletReadyState {
    /**
     * Wallet can only be in one of two states - installed or not installed
     * Installed: wallets are detected by the browser event listeners and means they are installed on the user's browser.
     * NotDetected: wallets are not detected by the browser event listeners and means they are not installed on the user's browser.
     */
    Installed = "Installed",
    NotDetected = "NotDetected"
}
export declare enum NetworkName {
    Mainnet = "mainnet",
    Testnet = "testnet",
    Devnet = "devnet"
}
export declare const ChainIdToAnsSupportedNetworkMap: Record<string, string>;
/** The base URL for all Aptos Connect wallets. */
export declare const APTOS_CONNECT_BASE_URL = "https://aptosconnect.app";
/** The URL to the Aptos Connect account page if the user is signed in to Aptos Connect. */
export declare const APTOS_CONNECT_ACCOUNT_URL = "https://aptosconnect.app/dashboard/main-account";
//# sourceMappingURL=constants.d.ts.map