remove listeners, set auth function onto system

This commit is contained in:
Liran Cohen
2023-01-25 08:37:35 -05:00
committed by Kieran
parent 97a467260d
commit 2d75139065
5 changed files with 39 additions and 74 deletions

View File

@ -212,6 +212,10 @@ export class NostrSystem {
setTimeout(() => this._FetchMetadata(), 500);
}
async nip42Auth(challenge: string, relay:string): Promise<Event|undefined> {
return
}
}
export const System = new NostrSystem();