(secret: string)
| 7 | import { TWallet } from '../class/wallets/types'; |
| 8 | |
| 9 | const getRandomLabelFromSecret = (secret: string): string => { |
| 10 | const words = secret.split(' '); |
| 11 | const firstWord = words[0]; |
| 12 | const lastWord = words[words.length - 1]; |
| 13 | return `[Developer] ${firstWord} ${lastWord}`; |
| 14 | }; |
| 15 | |
| 16 | const showAlertWithWalletOptions = ( |
| 17 | wallets: TWallet[], |