Go to file
2024-02-15 19:00:11 +03:00
prisma Add npub index to names, add get name by npub method 2024-02-07 08:43:15 +03:00
src Add name's pubkey to nip46 entry of nostr.json 2024-02-15 19:00:11 +03:00
.gitignore First commit 2023-12-01 13:15:15 +03:00
LICENSE First commit 2023-12-01 13:15:15 +03:00
package-lock.json Implement bunker with create_account and /created method, update ndk, prettify 2024-02-08 10:16:45 +03:00
package.json Implement bunker with create_account and /created method, update ndk, prettify 2024-02-08 10:16:45 +03:00
README First commit 2023-12-01 13:15:15 +03:00

Noauth Daemon
-------------

Server for Noauth Nostr key manager.

API:

POST /subscribe({
  npub: string, 
  pushSubscription: json, // result of pushManager.subscribe
  relays: string[] // which relays to watch for nip46 rpc
})

Server starts watching the relays for nip46 rpc and if it 
detects that some requests don't have matching replies (signer 
is sleeping) then it sends a push message to the signer. 
Authorized using nip98.

POST /put({
  npub: string, 
  data: string, // encrypted nsec
  pwh: string // password hash 
})

Server stores this data and will serve it back later 
with /get. Authorized using nip98.

POST /get({
  npub: string,
  pwh: string // password hash
})

Server will return the data previously saved by /put,
pwh must match the one provided to /put (no access
to keys is needed).