mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-24 08:46:15 -04:00
feat(tool): bip39-generator
This commit is contained in:
parent
390ef93232
commit
765c010700
7 changed files with 436 additions and 29 deletions
11
src/tools/bip39-generator/index.ts
Normal file
11
src/tools/bip39-generator/index.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
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,
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue