upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/56.md
diff options
context:
space:
mode:
authorFrancisco Calderón <fjcalderon@gmail.com>2024-11-04 15:39:21 -0300
committerGitHub <noreply@github.com>2024-11-04 15:39:21 -0300
commit03f3bc39678262ecbd5d870c9da44723023557ff (patch)
treee75ecf32d3bc906a8b26314488a1ae90996169c1 /56.md
parentf72a2f69ed93cf442e83bf9e7e16f6c06da40384 (diff)
parent6bcd89c097e97e65dbc95e7c6b7b8348e8dd6b5c (diff)
Merge branch 'master' into p2p-nip
Diffstat (limited to '56.md')
-rw-r--r--56.md12
1 files changed, 8 insertions, 4 deletions
diff --git a/56.md b/56.md
index fc8d898..f7b1b1a 100644
--- a/56.md
+++ b/56.md
@@ -41,7 +41,7 @@ further qualification and querying.
41Example events 41Example events
42-------------- 42--------------
43 43
44```json 44```jsonc
45{ 45{
46 "kind": 1984, 46 "kind": 1984,
47 "tags": [ 47 "tags": [
@@ -50,9 +50,11 @@ Example events
50 ["l", "NS-nud", "social.nos.ontology"] 50 ["l", "NS-nud", "social.nos.ontology"]
51 ], 51 ],
52 "content": "", 52 "content": "",
53 ... 53 // other fields...
54} 54}
55```
55 56
57```jsonc
56{ 58{
57 "kind": 1984, 59 "kind": 1984,
58 "tags": [ 60 "tags": [
@@ -60,16 +62,18 @@ Example events
60 ["p", <pubkey>] 62 ["p", <pubkey>]
61 ], 63 ],
62 "content": "He's insulting the king!", 64 "content": "He's insulting the king!",
63 ... 65 // other fields...
64} 66}
67```
65 68
69```jsonc
66{ 70{
67 "kind": 1984, 71 "kind": 1984,
68 "tags": [ 72 "tags": [
69 ["p", <impersonator pubkey>, "impersonation"] 73 ["p", <impersonator pubkey>, "impersonation"]
70 ], 74 ],
71 "content": "Profile is impersonating nostr:<victim bech32 pubkey>", 75 "content": "Profile is impersonating nostr:<victim bech32 pubkey>",
72 ... 76 // other fields...
73} 77}
74``` 78```
75 79