simple support for nip07

This commit is contained in:
DASHU
2024-09-04 19:22:38 +08:00
parent 666c546d93
commit 633a29cd79
20 changed files with 1078 additions and 111 deletions

View File

@@ -1,5 +1,7 @@
class AuthResult {
static const int OK = 1;
static const int CANCEL = -1;
static const int REJECT = -1;
static const int ASK = 0;
}

View File

@@ -0,0 +1,3 @@
class ReasonablePermissions {
static const String text = "1;3;4;5;6;7,2-22242";
}

5
lib/const/zap_type.dart Normal file
View File

@@ -0,0 +1,5 @@
class ZapType {
static const int LIGHTNING_APP = 1;
static const int NWC = 2;
}