(event: Event)
| 283 | // Marmot Protocol helpers |
| 284 | |
| 285 | export const isWelcomeRumorEvent = (event: Event): boolean => { |
| 286 | return event.kind === EventKinds.MARMOT_WELCOME_RUMOR |
| 287 | } |
| 288 | |
| 289 | export const isMarmotGroupEvent = (event: Event): boolean => { |
| 290 | return event.kind === EventKinds.MARMOT_GROUP_EVENT |
no outgoing calls
no test coverage detected