it-tools/src/tools/bip39-generator/index.ts

12 lines
454 B
TypeScript
Raw Normal View History

2022-04-09 15:17:59 +02:00
import { AlignJustified } from '@vicons/tabler';
2022-05-25 23:20:51 +02:00
import type { ITool } from '../tool';
2022-04-09 15:17:59 +02:00
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,
};