Implement ETH send and QR code receive
check / check (push) Successful in 22s

Send: stores mnemonic/private key with wallet data, derives
signing key from mnemonic + address index via ethers HDNodeWallet,
constructs transaction with parseEther, broadcasts via
sendTransaction, waits for confirmation, shows block number
and tx hash. ENS resolution in To field preserved.

Receive: QR code rendered to canvas via qrcode library (1.5.4).
Shows scannable QR above the full address text.

README updated with qrcode dependency and TODO progress.
This commit is contained in:
2026-02-25 18:17:23 +07:00
parent fc3f0e00c8
commit bfecddf2f7
5 ha cambiato i file con 151 aggiunte e 15 eliminazioni
+2 -1
Vedi File
@@ -21,6 +21,7 @@
},
"dependencies": {
"ethers": "^6.16.0",
"libsodium-wrappers-sumo": "^0.8.2"
"libsodium-wrappers-sumo": "^0.8.2",
"qrcode": "^1.5.4"
}
}