@@ -52,6 +52,8 @@ pub enum Kind {
5252 PublicChatReserved48 ,
5353 /// Public Chat Reserved (NIP28)
5454 PublicChatReserved49 ,
55+ /// Wallet Service Info (NIP47)
56+ WalletConnectInfo ,
5557 /// Reporting (NIP56)
5658 Reporting ,
5759 /// Zap Request (NIP57)
@@ -66,6 +68,10 @@ pub enum Kind {
6668 RelayList ,
6769 /// Client Authentication (NIP42)
6870 Authentication ,
71+ /// Wallet Connect Request (NIP47)
72+ WalletConnectRequest ,
73+ /// Wallet Connect Response (NIP47)
74+ WalletConnectResponse ,
6975 /// Nostr Connect (NIP46)
7076 NostrConnect ,
7177 /// Categorized People List (NIP51)
@@ -126,13 +132,16 @@ impl From<u64> for Kind {
126132 47 => Self :: PublicChatReserved47 ,
127133 48 => Self :: PublicChatReserved48 ,
128134 49 => Self :: PublicChatReserved49 ,
135+ 13194 => Self :: WalletConnectInfo ,
129136 1984 => Self :: Reporting ,
130137 9734 => Self :: ZapRequest ,
131138 9735 => Self :: Zap ,
132139 10000 => Self :: MuteList ,
133140 10001 => Self :: PinList ,
134141 10002 => Self :: RelayList ,
135142 22242 => Self :: Authentication ,
143+ 23194 => Self :: WalletConnectRequest ,
144+ 23195 => Self :: WalletConnectResponse ,
136145 24133 => Self :: NostrConnect ,
137146 30000 => Self :: CategorizedPeopleList ,
138147 30001 => Self :: CategorizedBookmarkList ,
@@ -171,13 +180,16 @@ impl From<Kind> for u64 {
171180 Kind :: PublicChatReserved47 => 47 ,
172181 Kind :: PublicChatReserved48 => 48 ,
173182 Kind :: PublicChatReserved49 => 49 ,
183+ Kind :: WalletConnectInfo => 13194 ,
174184 Kind :: Reporting => 1984 ,
175185 Kind :: ZapRequest => 9734 ,
176186 Kind :: Zap => 9735 ,
177187 Kind :: MuteList => 10000 ,
178188 Kind :: PinList => 10001 ,
179189 Kind :: RelayList => 10002 ,
180190 Kind :: Authentication => 22242 ,
191+ Kind :: WalletConnectRequest => 23194 ,
192+ Kind :: WalletConnectResponse => 23195 ,
181193 Kind :: NostrConnect => 24133 ,
182194 Kind :: CategorizedPeopleList => 30000 ,
183195 Kind :: CategorizedBookmarkList => 30001 ,
0 commit comments