@mobile-wallet-protocol/client
Version:
Client SDK for the Mobile Wallet Protocol
24 lines (23 loc) • 567 B
TypeScript
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";
};
};