Support Aegis URL scheme for NIP-46 login #161

Merged
hodlbod merged 5 commits from priyanshu_bharti/flotilla:83-aegis-url-scheme into dev 2026-04-10 19:04:35 +00:00
Showing only changes of commit 6f953ddbc7 - Show all commits
-5
View File
@@ -31,7 +31,6 @@ const makeSignerLaunchUrl = (nostrconnectUrl: string) => {
export class Nip46Controller {
url = writable("")
signerUrls = writable<{aegis: string; nostrsigner: string} | undefined>(undefined)
bunker = writable("")
loading = writable(false)
clientSecret = makeSecret()
@@ -52,10 +51,6 @@ export class Nip46Controller {
})
this.url.set(url)
this.signerUrls.set({
aegis: makeSignerLaunchUrl(url),
nostrsigner: makeSignerLaunchUrl(url),
})
let response
try {
1