aboutsummaryrefslogtreecommitdiff
path: root/src/tools/bip39-generator/index.ts
blob: 99bf0458fe209556c7e7722151c85002fd0d0c52 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import { AlignJustified } from '@vicons/tabler';
import type { ITool } from '../tool';

export const tool: ITool = {
  name: 'BIP39 passphrase generator',
  path: '/bip39-generator',
  description: 'Generate BIP39 passphrase from existing or random mnemonic, or get the mnemonic from the passphrase.',
  keywords: ['BIP39', 'passphrase', 'generator', 'mnemonic', 'entropy'],
  component: () => import('./bip39-generator.vue'),
  icon: AlignJustified,
};