@aptos-labs/wallet-adapter-core
Version:
Aptos Wallet Adapter Core
18 lines • 1.37 kB
TypeScript
import { AptosStandardSupportedWallet } from "./utils/types";
/**
* Registry of AIP-62 wallet standard supported wallets.
* This list is used to show supported wallets even if they are not installed on the user machine.
*
* AIP-62 compatible wallets are required to add their wallet info here if they want to be detected by the adapter
*
* @param name - The name of your wallet cast to WalletName (Ex. "Petra" as WalletName<"Petra">)
* @param url - The link to your chrome extension or main website where new users can create an account with your wallet.
* @param icon - An icon for your wallet. Can be one of 4 data types. Be sure to follow the below format exactly (including the literal "," after base64).
* Format: `data:image/${"svg+xml" | "webp" | "png" | "gif"};base64,${string}`
* Note: ${...} data in the above format should be replaced. Other characters are literals (ex. ";")
* @param deeplinkProvider optional - An optional deeplink provider for the wallet. If the wallet is not installed, we can redirect the user to the wallet's deeplink provider
* @example "https://myWallet.app/explore?link="
*/
export declare const aptosStandardSupportedWalletList: Array<AptosStandardSupportedWallet>;
export declare const crossChainStandardSupportedWalletList: Array<AptosStandardSupportedWallet>;
//# sourceMappingURL=registry.d.ts.map