-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathmnemonic.ts
39 lines (35 loc) · 1.13 KB
/
mnemonic.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/* eslint-disable no-console */
/* eslint-disable @typescript-eslint/no-floating-promises */
import * as Crypto from '@cardano-sdk/crypto';
import { AddressType, InMemoryKeyAgent, KeyPurpose, util } from '@cardano-sdk/key-management';
import { localNetworkChainId } from '../util';
/** Generates a new set of Mnemonic words and prints them to the console. */
(async () => {
let mnemonic = '';
const mnemonicArray = util.generateMnemonicWords();
for (const word of mnemonicArray) mnemonic += `${word} `;
const keyAgentFromMnemonic = await InMemoryKeyAgent.fromBip39MnemonicWords(
{
chainId: localNetworkChainId,
getPassphrase: async () => Buffer.from(''),
mnemonicWords: mnemonicArray,
purpose: KeyPurpose.STANDARD
},
{
bip32Ed25519: new Crypto.SodiumBip32Ed25519(),
logger: console
}
);
const derivedAddress = await keyAgentFromMnemonic.deriveAddress(
{
index: 0,
type: AddressType.External
},
0
);
console.log('');
console.log(` Mnemonic: ${mnemonic}`);
console.log('');
console.log(` Address: ${derivedAddress.address}`);
console.log('');
})();