Files
welshman/src/nostr/kinds.ts
T
2024-02-26 15:04:31 -08:00

9 lines
310 B
TypeScript

export const GROUP = 35834
export const COMMUNITY = 34550
export const isGroupAddress = (a: string) => a.startsWith(`${GROUP}:`)
export const isCommunityAddress = (a: string) => a.startsWith(`${COMMUNITY}:`)
export const isCommunityOrGroupAddress = (a: string) => isCommunityAddress(a) || isGroupAddress(a)