(event: Event)
| 260 | // NIP-17: Private Direct Messages helpers |
| 261 | |
| 262 | export const isGiftWrapEvent = (event: Event): boolean => { |
| 263 | return event.kind === EventKinds.GIFT_WRAP |
| 264 | } |
| 265 | |
| 266 | export const isSealEvent = (event: Event): boolean => { |
| 267 | return event.kind === EventKinds.SEAL |
no outgoing calls
no test coverage detected