forked from qzz0518/coss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wallet_gen.js
30 lines (27 loc) · 1.13 KB
/
wallet_gen.js
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
const fs = require('fs');
const bip39 = require("bip39");
const { crypto } = require("cosmos-lib");
const {DirectSecp256k1Wallet} = require("@cosmjs/proto-signing");
async function generateCosmosWallets(numberOfWallets) {
let walletData = [];
if (fs.existsSync('cosmos_wallets.json')) {
const existingData = JSON.parse(fs.readFileSync('cosmos_wallets.json', 'utf8'));
walletData = [...existingData];
}
for (let i = 0; i < numberOfWallets; i++) {
const mnemonic = bip39.generateMnemonic();
const keys = crypto.getKeysFromMnemonic(mnemonic);
const wallet = await DirectSecp256k1Wallet.fromKey(Buffer.from(keys.privateKey), "cosmos");
const [account] = await wallet.getAccounts();
const walletAddress = account.address;
walletData.push({
address: walletAddress,
mnemonic: mnemonic,
privateKey: keys.privateKey.toString('hex')
});
}
fs.writeFileSync('cosmos_wallets.json', JSON.stringify(walletData, null, 4));
}
generateCosmosWallets(30).then(() => {
console.log("Wallets generated and saved to cosmos_wallets.json");
});