* A reply broadcast to the channel timeline carries the exact tag * `["broadcast", "1"]` (NIP-CW §Top-level Classification).
(tags: string[][])
| 2811 | * `["broadcast", "1"]` (NIP-CW §Top-level Classification). |
| 2812 | */ |
| 2813 | function isMockBroadcastReply(tags: string[][]): boolean { |
| 2814 | return tags.some((tag) => tag[0] === "broadcast" && tag[1] === "1"); |
| 2815 | } |
| 2816 | |
| 2817 | /** |
| 2818 | * Mirror the relay's channel-window row set (buzz-db `thread.rs`, NIP-CW |