@@ -52,6 +52,8 @@ pub enum Kind {
52
52
PublicChatReserved48 ,
53
53
/// Public Chat Reserved (NIP28)
54
54
PublicChatReserved49 ,
55
+ /// Wallet Service Info (NIP47)
56
+ WalletConnectInfo ,
55
57
/// Reporting (NIP56)
56
58
Reporting ,
57
59
/// Zap Request (NIP57)
@@ -66,6 +68,10 @@ pub enum Kind {
66
68
RelayList ,
67
69
/// Client Authentication (NIP42)
68
70
Authentication ,
71
+ /// Wallet Connect Request (NIP47)
72
+ WalletConnectRequest ,
73
+ /// Wallet Connect Response (NIP47)
74
+ WalletConnectResponse ,
69
75
/// Nostr Connect (NIP46)
70
76
NostrConnect ,
71
77
/// Categorized People List (NIP51)
@@ -126,13 +132,16 @@ impl From<u64> for Kind {
126
132
47 => Self :: PublicChatReserved47 ,
127
133
48 => Self :: PublicChatReserved48 ,
128
134
49 => Self :: PublicChatReserved49 ,
135
+ 13194 => Self :: WalletConnectInfo ,
129
136
1984 => Self :: Reporting ,
130
137
9734 => Self :: ZapRequest ,
131
138
9735 => Self :: Zap ,
132
139
10000 => Self :: MuteList ,
133
140
10001 => Self :: PinList ,
134
141
10002 => Self :: RelayList ,
135
142
22242 => Self :: Authentication ,
143
+ 23194 => Self :: WalletConnectRequest ,
144
+ 23195 => Self :: WalletConnectResponse ,
136
145
24133 => Self :: NostrConnect ,
137
146
30000 => Self :: CategorizedPeopleList ,
138
147
30001 => Self :: CategorizedBookmarkList ,
@@ -171,13 +180,16 @@ impl From<Kind> for u64 {
171
180
Kind :: PublicChatReserved47 => 47 ,
172
181
Kind :: PublicChatReserved48 => 48 ,
173
182
Kind :: PublicChatReserved49 => 49 ,
183
+ Kind :: WalletConnectInfo => 13194 ,
174
184
Kind :: Reporting => 1984 ,
175
185
Kind :: ZapRequest => 9734 ,
176
186
Kind :: Zap => 9735 ,
177
187
Kind :: MuteList => 10000 ,
178
188
Kind :: PinList => 10001 ,
179
189
Kind :: RelayList => 10002 ,
180
190
Kind :: Authentication => 22242 ,
191
+ Kind :: WalletConnectRequest => 23194 ,
192
+ Kind :: WalletConnectResponse => 23195 ,
181
193
Kind :: NostrConnect => 24133 ,
182
194
Kind :: CategorizedPeopleList => 30000 ,
183
195
Kind :: CategorizedBookmarkList => 30001 ,
0 commit comments