Appearance
Kind 34550: Community Definition
Overview
Community Definition events (kind 34550) establish moderated communities in the Nostr ecosystem. These parameterized replaceable events define the structure, purpose, and governance of Reddit-style communities where users can post content that is subject to moderation. Each community has a unique identity, description, and a list of designated moderators who can approve or reject posts.
Specification
Property | Value |
---|---|
Kind Number | 34550 |
Event Range | Parameterized Replaceable |
Defined in | NIP-72 |
Content Format
The content
field typically contains additional information about the community or can be left empty if all relevant information is in the tags.
Schema
json
"content": "This community is dedicated to discussing developments in the Nostr protocol and ecosystem."
Tags
Tag Name | Description | Format | Required |
---|---|---|---|
d | Community identifier | ["d", "<community-d-identifier>"] | Yes |
name | Human-readable name | ["name", "<community-name>"] | No |
description | Community description | ["description", "<community-description>"] | No |
image | Community image URL | ["image", "<url>", "<width>x<height>"] | No |
p | Moderator public key | ["p", "<pubkey>", "<relay-url>", "moderator"] | No |
relay | Community relay | ["relay", "<relay-url>", "<optional-role>"] | No |
rules | Community rules | ["rules", "<rules-text>"] | No |
topic | Community topic | ["topic", "<topic-name>"] | No |
Client Behavior
Clients should:
- Display community information in a recognizable format
- Show the
name
tag value as the community name if present, otherwise use thed
tag - Present the list of moderators and their roles
- Allow users to browse communities and view posts made to them
- When submitting posts to communities:
- Add an
a
tag referencing the community using format:34550:<pubkey>:<d-identifier>
- Include a relay hint to help others find the community definition
- Add an
- For moderation functions:
- Allow moderators to issue approval events (kind 4550) for posts
- Show only approved posts when viewing a moderated community
- Support filtering approved posts by kind using the
k
tag
Relay Behavior
Relays should:
- Handle kind 34550 events as parameterized replaceable events with the
d
tag as discriminator - Store these events to allow clients to discover communities
- When supporting NIP-72 communities, store approval events (kind 4550) for moderation
Use Cases
- Creating topic-based discussion communities
- Building moderated spaces for content curation
- Establishing shared interest groups
- Creating specialized knowledge-sharing forums
- Supporting community governance and moderation
- Enabling discovery of quality content by topic
- Building Reddit-style community structures
Example
json
{
"id": "c6903a5204c8a9c1c2a33cae7f184dc7083bb10c9d15329d9afa0b430180a2eb",
"pubkey": "32e1827635450ebb3c5a7d12c1f8e7b2b514439ac10a67eef3d9fd9c5c68e245",
"created_at": 1684323900,
"kind": 34550,
"tags": [
["d", "nostr-dev"],
["name", "Nostr Development"],
["description", "A community for discussing Nostr protocol development, client implementations, and relay operations."],
["image", "https://example.com/nostr-dev-logo.png", "500x500"],
["p", "3bf0c63fcb93463407af97a5e5ee64fa883d107ef9e558472c4eb9aaaefa459d", "wss://relay.damus.io", "moderator"],
["p", "32e1827635450ebb3c5a7d12c1f8e7b2b514439ac10a67eef3d9fd9c5c68e245", "wss://relay.nostr.band", "moderator"],
["relay", "wss://relay.nostr.band", "requests"],
["relay", "wss://relay.damus.io", "approvals"],
["rules", "1. Be respectful. 2. Stay on topic. 3. No spam. 4. Share code examples when possible."],
["topic", "development"],
["topic", "protocol"]
],
"content": "This community is for Nostr developers to discuss protocol improvements, client implementations, relay operations, and all technical aspects of the Nostr ecosystem.",
"sig": "87b1863f65a0a3a36b235cc78dad747cc9584d64b8e2a195ed83f2d0a54c85daa8a682a096ebd968f6d16cfd0ac3ab867269f92c0e127a782cf51b04c18a5dce"
}
Community Posting Process
The posting process in a NIP-72 community consists of three main steps:
Creating a Post: Users submit an event (of any kind) with an
a
tag referencing the community:json{ "kind": 1, "tags": [ ["a", "34550:32e1827635450ebb3c5a7d12c1f8e7b2b514439ac10a67eef3d9fd9c5c68e245:nostr-dev", "wss://relay.nostr.band"] ], "content": "Has anyone implemented NIP-72 communities in their client yet?" }
Moderation Approval: Moderators issue an approval event (kind 4550):
json{ "kind": 4550, "tags": [ ["a", "34550:32e1827635450ebb3c5a7d12c1f8e7b2b514439ac10a67eef3d9fd9c5c68e245:nostr-dev", "wss://relay.nostr.band"], ["e", "<post-event-id>", "<relay-url>"], ["p", "<post-author-pubkey>", "<relay-url>"], ["k", "1"] ], "content": "<JSON-encoded original post event>" }
Content Display: Clients show only approved posts when viewing the community.
References
Related Kinds
- Kind 4550: Community Post Approval - Approval of posts by moderators
- Kind 10004: Communities - List of communities a user belongs to
- Kind 1: Short Text Note - Common post type in communities
Notes
- The
d
tag is required for parameterized replaceable events to work correctly - Community identifiers should be chosen carefully, as they become part of the community's identity
- The
name
tag is preferred for display over thed
tag when available - Relay tags may include specialized roles:
author
: Relay hosting the community author's kind 0 profilerequests
: Relay for sending and receiving post requestsapprovals
: Relay for sending and receiving approval events
- Moderator roles may be expanded in the future to include different privilege levels
- Clients may implement different UX approaches for community interaction
- Posts can be cross-posted to multiple communities using appropriate
a
tags - Replaceable events can be approved in three ways as specified in NIP-72:
- Using an
e
tag to approve a specific version - Using an
a
tag to approve all future versions - Using both
e
anda
tags for complete history
- Using an