Files
AutistMask/package.json
sneak bfecddf2f7
All checks were successful
check / check (push) Successful in 22s
Implement ETH send and QR code receive
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.
2026-02-25 18:17:23 +07:00

28 lines
761 B
JSON

{
"name": "autistmask",
"version": "0.1.0",
"description": "Minimal Ethereum wallet browser extension for Chrome and Firefox",
"author": "sneak <sneak@sneak.berlin>",
"license": "GPL-3.0",
"private": true,
"scripts": {
"test": "jest --forceExit",
"build": "node build.js",
"lint": "prettier --check .",
"fmt": "prettier --write .",
"fmt-check": "prettier --check ."
},
"devDependencies": {
"@tailwindcss/cli": "^4.2.1",
"esbuild": "^0.27.3",
"jest": "^30.2.0",
"prettier": "^3.8.1",
"tailwindcss": "^4.2.1"
},
"dependencies": {
"ethers": "^6.16.0",
"libsodium-wrappers-sumo": "^0.8.2",
"qrcode": "^1.5.4"
}
}