mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-29 19:09:13 -04:00
12 lines
454 B
TypeScript
12 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,
|
||
|
};
|