Skip to content

Commit 2cc4e6b

Browse files
Initial release: Podkey v0.0.1 - World-class Nostr wallet with Solid superpowers
Complete NIP-07 provider implementation with beautiful UX and Solid integration. Features: ✨ Full NIP-07 window.nostr API 🔐 Secure key generation & storage using @noble/secp256k1 📱 Beautiful popup UI with soft gradient light theme ⚡ Automatic Solid server authentication (NIP-98) 🎯 64-char hex key validation for did:nostr 🛡️ Per-origin trust management 🌈 Auto-sign for trusted Solid pods Components: - src/crypto.js: Key generation, signing, validation - src/storage.js: Secure Chrome storage wrapper - src/background.js: Service worker, message handling - src/nostr-provider.js: window.nostr injection - src/injected.js: Content script bridge - popup/*: Beautiful UI with gradients Better than nos2x: - Modern, polished UI - Enhanced security - Built-in Solid auth - Activity logging ready - Trust management NPM package structure ready for publishing Manifest V3 for Chrome/Edge/Brave compatibility MIT licensed World-class README documentation All keys validated as 64-char hex per did:nostr spec
0 parents  commit 2cc4e6b

14 files changed

Lines changed: 2075 additions & 0 deletions

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
node_modules/
2+
*.log
3+
.DS_Store
4+
.env
5+
dist/
6+
*.crx
7+
*.pem
8+
*.zip
9+
.vscode/
10+
.idea/

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2026 JavaScriptSolidServer
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)