add support for NIP44 (chrome & firefox)

This commit is contained in:
DEV Sam Hayes
2025-02-15 15:08:48 +01:00
parent a8f3fad87b
commit c51e4d951f
16 changed files with 341 additions and 28 deletions

View File

@@ -3,6 +3,8 @@ export type Nip07Method =
| 'getPublicKey'
| 'getRelays'
| 'nip04.encrypt'
| 'nip04.decrypt';
| 'nip04.decrypt'
| 'nip44.encrypt'
| 'nip44.decrypt';
export type Nip07MethodPolicy = 'allow' | 'deny';