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';
|
2024-01-10 23:15:39 +08:00
|
|
|
import { translate as t } from '@/plugins/i18n.plugin';
|
2022-04-09 15:17:59 +02:00
|
|
|
|
2022-06-01 23:52:21 +02:00
|
|
|
export const tool = defineTool({
|
2024-01-10 23:15:39 +08:00
|
|
|
name: t('tools.bip39-generator.title'),
|
2022-04-09 15:17:59 +02:00
|
|
|
path: '/bip39-generator',
|
2024-01-10 23:15:39 +08:00
|
|
|
description: t('tools.bip39-generator.description'),
|
2022-04-09 15:17:59 +02:00
|
|
|
keywords: ['BIP39', 'passphrase', 'generator', 'mnemonic', 'entropy'],
|
|
|
|
component: () => import('./bip39-generator.vue'),
|
|
|
|
icon: AlignJustified,
|
2022-06-01 23:52:21 +02:00
|
|
|
});
|