2022-04-09 15:17:59 +02:00
|
|
|
import { AlignJustified } from '@vicons/tabler';
|
2022-06-01 23:52:21 +02:00
|
|
|
import { defineTool } from '../tool';
|
2022-04-09 15:17:59 +02:00
|
|
|
|
2022-06-01 23:52:21 +02:00
|
|
|
export const tool = defineTool({
|
2022-04-09 15:17:59 +02:00
|
|
|
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,
|
2022-06-01 23:52:21 +02:00
|
|
|
});
|