diff options
| author | Kieran <kieran@harkin.me> | 2024-10-15 11:15:54 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-15 11:15:54 +0100 |
| commit | 1e2f19863ca56754daa2466881eb22087a71b17d (patch) | |
| tree | 4f7be759dce290fea1d3ae10c403260b466ee16c /53.md | |
| parent | 53afaaece61f02e92b5ef9c3e9c32945c7ebf522 (diff) | |
| parent | e381b577c997b849fa544eea7dc9f08b360b4a33 (diff) | |
Merge branch 'master' into nip71-imeta
Diffstat (limited to '53.md')
| -rw-r--r-- | 53.md | 14 |
1 files changed, 7 insertions, 7 deletions
| @@ -12,11 +12,11 @@ Service providers want to offer live activities to the Nostr network in such a w | |||
| 12 | 12 | ||
| 13 | ### Live Event | 13 | ### Live Event |
| 14 | 14 | ||
| 15 | A special event with `kind:30311` "Live Event" is defined as a _parameterized replaceable event_ of public `p` tags. Each `p` tag SHOULD have a **displayable** marker name for the current role (e.g. `Host`, `Speaker`, `Participant`) of the user in the event and the relay information MAY be empty. This event will be constantly updated as participants join and leave the activity. | 15 | A special event with `kind:30311` "Live Event" is defined as an _addressable event_ of public `p` tags. Each `p` tag SHOULD have a **displayable** marker name for the current role (e.g. `Host`, `Speaker`, `Participant`) of the user in the event and the relay information MAY be empty. This event will be constantly updated as participants join and leave the activity. |
| 16 | 16 | ||
| 17 | For example: | 17 | For example: |
| 18 | 18 | ||
| 19 | ```json | 19 | ```jsonc |
| 20 | { | 20 | { |
| 21 | "kind": 30311, | 21 | "kind": 30311, |
| 22 | "tags": [ | 22 | "tags": [ |
| @@ -35,10 +35,10 @@ For example: | |||
| 35 | ["p", "91cf9..4e5ca", "wss://provider1.com/", "Host", "<proof>"], | 35 | ["p", "91cf9..4e5ca", "wss://provider1.com/", "Host", "<proof>"], |
| 36 | ["p", "14aeb..8dad4", "wss://provider2.com/nostr", "Speaker"], | 36 | ["p", "14aeb..8dad4", "wss://provider2.com/nostr", "Speaker"], |
| 37 | ["p", "612ae..e610f", "ws://provider3.com/ws", "Participant"], | 37 | ["p", "612ae..e610f", "ws://provider3.com/ws", "Participant"], |
| 38 | ["relays", "wss://one.com", "wss://two.com", ...] | 38 | ["relays", "wss://one.com", "wss://two.com", /*...*/] |
| 39 | ], | 39 | ], |
| 40 | "content": "", | 40 | "content": "", |
| 41 | ... | 41 | // other fields... |
| 42 | } | 42 | } |
| 43 | ``` | 43 | ``` |
| 44 | 44 | ||
| @@ -64,20 +64,20 @@ This feature is important to avoid malicious event owners adding large account h | |||
| 64 | 64 | ||
| 65 | Event `kind:1311` is live chat's channel message. Clients MUST include the `a` tag of the activity with a `root` marker. Other Kind-1 tags such as `reply` and `mention` can also be used. | 65 | Event `kind:1311` is live chat's channel message. Clients MUST include the `a` tag of the activity with a `root` marker. Other Kind-1 tags such as `reply` and `mention` can also be used. |
| 66 | 66 | ||
| 67 | ```json | 67 | ```jsonc |
| 68 | { | 68 | { |
| 69 | "kind": 1311, | 69 | "kind": 1311, |
| 70 | "tags": [ | 70 | "tags": [ |
| 71 | ["a", "30311:<Community event author pubkey>:<d-identifier of the community>", "<Optional relay url>", "root"], | 71 | ["a", "30311:<Community event author pubkey>:<d-identifier of the community>", "<Optional relay url>", "root"], |
| 72 | ], | 72 | ], |
| 73 | "content": "Zaps to live streams is beautiful.", | 73 | "content": "Zaps to live streams is beautiful.", |
| 74 | ... | 74 | // other fields... |
| 75 | } | 75 | } |
| 76 | ``` | 76 | ``` |
| 77 | 77 | ||
| 78 | ## Use Cases | 78 | ## Use Cases |
| 79 | 79 | ||
| 80 | Common use cases include meeting rooms/workshops, watch-together activities, or event spaces, such as [live.snort.social](https://live.snort.social) and [nostrnests.com](https://nostrnests.com). | 80 | Common use cases include meeting rooms/workshops, watch-together activities, or event spaces, such as [zap.stream](https://zap.stream). |
| 81 | 81 | ||
| 82 | ## Example | 82 | ## Example |
| 83 | 83 | ||