UNPKG

@mobile-wallet-protocol/client

Version:
24 lines (23 loc) 567 B
export type Wallet = { type: 'web'; name: string; scheme: string; iconUrl?: string; } | { type: 'native'; name: string; scheme: string; storeUrl: { appStore: string; googlePlay: string; }; iconUrl?: string; }; export declare const Wallets: { readonly CoinbaseSmartWallet: { readonly type: "web"; readonly name: "Coinbase Smart Wallet"; readonly scheme: "https://keys.coinbase.com/connect"; readonly iconUrl: "https://wallet.coinbase.com/assets/images/favicon.ico"; }; };