feat(tool): bip39-generator

This commit is contained in:
Corentin Thomasset 2022-04-09 15:17:59 +02:00
parent 390ef93232
commit 765c010700
No known key found for this signature in database
GPG key ID: 3103EB5E79496F9C
7 changed files with 436 additions and 29 deletions

View 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,
};