-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerateKeys.ts
executable file
·39 lines (33 loc) · 1.17 KB
/
generateKeys.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
import { writeFile } from "node:fs/promises";
import { join } from "node:path";
import { generateEncryptionKeyHex } from "@helpers/client";
import { generatePrivateKey, privateKeyToAccount } from "viem/accounts";
console.log("Generating keys...");
const person = process.argv[2];
const walletKey = generatePrivateKey();
const account = privateKeyToAccount(walletKey);
const encryptionKeyHex = generateEncryptionKeyHex();
const publicKey = account.address;
const filePath = join(process.cwd(), ".env");
// Format the environment variables based on whether a person name was provided
let envContent;
if (person) {
envContent = `# ${person.toLowerCase()}
WALLET_KEY_${person.toUpperCase()}=${walletKey}
ENCRYPTION_KEY_${person.toUpperCase()}=${encryptionKeyHex}
# public key is ${publicKey}
`;
} else {
envContent = `# generic keys
WALLET_KEY=${walletKey}
ENCRYPTION_KEY=${encryptionKeyHex}
# public key is ${publicKey}
`;
}
await writeFile(filePath, envContent, { flag: "a" });
// Log appropriate message based on whether a person name was provided
if (person) {
console.log(`Keys for ${person} written to ${filePath}`);
} else {
console.log(`Generic keys written to ${filePath}`);
}