it-tools/src/tools/bip39-generator/index.ts
2022-04-09 15:17:59 +02:00

11 lines
454 B
TypeScript

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,
};