1 import { type WalletClient, WalletClientKeys } from '../types';
3 export const WALLET_SETTINGS_ROUTES = {
4 DOWNLOADS: '/downloads',
7 export const WALLET_CLIENTS: { [key in WalletClientKeys]: WalletClient } = {
8 [WalletClientKeys.Android]: {
10 icon: 'brand-android',
11 link: 'https://play.google.com/store/apps/details?id=me.proton.wallet.android',
13 [WalletClientKeys.iOS]: {
16 link: 'https://testflight.apple.com/join/6OIcXtQN',
20 export const MAX_RECIPIENTS_PER_TRANSACTIONS = 10;