- Rename app to 'Wallet Generator' (index.html, window title, sidebar, package.json) - Add ~/.wallet-generator/wallet/ as save directory for all generated wallets - Add save-wallet and get-wallet-dir IPC handlers in Electron main process - Expose saveWallet/getWalletDir via preload contextBridge - HDWallet: save JSON to disk with optional encryption, show saved path - SingleAddress: add Save card with editable filename for all address types
14 lines
374 B
HTML
14 lines
374 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/icons/bitcoin.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Wallet Generator</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
</body>
|
|
</html>
|