Merge branch 'revert/signature-verification' into 'main'
[ProtonMail-WebClient.git] / packages / wallet / constants / settings.ts
blobe55d675f11368faff77117a946cbe37bfdcd8ea4
1 import { type WalletClient, WalletClientKeys } from '../types';
3 export const WALLET_SETTINGS_ROUTES = {
4     DOWNLOADS: '/downloads',
5 };
7 export const WALLET_CLIENTS: { [key in WalletClientKeys]: WalletClient } = {
8     [WalletClientKeys.Android]: {
9         title: 'Android',
10         icon: 'brand-android',
11         link: 'https://play.google.com/store/apps/details?id=me.proton.wallet.android',
12     },
13     [WalletClientKeys.iOS]: {
14         title: 'iOS',
15         icon: 'brand-apple',
16         link: 'https://testflight.apple.com/join/6OIcXtQN',
17     },
18 } as const;
20 export const MAX_RECIPIENTS_PER_TRANSACTIONS = 10;