Compare commits

...

24 Commits

Author SHA1 Message Date
limina1 95361427ac
Merge e70e4916ae into ebfcd72a8d 2025-05-06 07:34:16 +00:00
limina1 e70e4916ae
Update 51.md 2025-02-27 15:29:54 -05:00
limina1 9fc96d8aab
change phrasing 51.md 2025-02-17 21:39:17 -05:00
limina1 921e79ec73
Add link safety 51.md 2025-02-17 21:32:57 -05:00
limina1 339f2f5425
Update 56.md 2025-02-17 21:12:18 -05:00
limina1 2222e5a85c
Update 56.md 2025-02-12 18:21:09 -05:00
limina1 2ef90cda50
Delete 62.md 2025-02-12 18:18:15 -05:00
limina1 1fbf8450ee
Merge branch 'nostr-protocol:master' into extend56 2025-02-12 17:22:54 -05:00
limina1 6c7e756f92
Create 56.md 2025-02-11 11:01:19 -05:00
limina1 e87020a11a
Delete 56.md 2025-02-07 19:08:18 -05:00
limina1 40de29cd6f extend 56.md 2025-02-01 13:38:02 -05:00
limina1 a83542b658
Update 62.md
Co-authored-by: dluvian <133484344+dluvian@users.noreply.github.com>
2025-01-30 02:05:04 -05:00
limina1 c96a0b1f5a
Update 62.md 2024-11-28 14:13:47 -05:00
limina1 190a860f27
Update 62.md
Co-authored-by: arthurfranca <arthur.a.franca@gmail.com>
2024-11-28 11:00:45 -05:00
limina1 0f64626cb5
Apply suggestions from code review
Co-authored-by: arthurfranca <arthur.a.franca@gmail.com>
2024-11-28 10:58:11 -05:00
limina1 a359589f54
Update 62.md
Co-authored-by: arthurfranca <arthur.a.franca@gmail.com>
2024-11-28 10:56:07 -05:00
limina1 1c393c92a8
Update 62.md 2024-11-27 15:43:43 -05:00
limina1 2111dd0114
add `a` tag description
security model tag specifies how events should be updated
2024-11-27 15:19:39 -05:00
limina1 9c19137935
include option of `a` and `e` tags 2024-11-26 20:07:24 -05:00
limina1 4c60810324
fix tag format 62.md 2024-11-22 19:44:08 -05:00
limina1 855b39dbc8
Change naming from collections to curated publications 62.md 2024-11-22 19:23:48 -05:00
limina1 9662559ba8
fix typos 62.md 2024-11-22 16:14:06 -05:00
limina1 4c5b62feba
Update 62.md 2024-11-22 15:26:45 -05:00
limina1 4ae75015e1
Create 62.md 2024-11-22 15:14:11 -05:00
1 changed files with 19 additions and 0 deletions

19
51.md
View File

@ -152,6 +152,25 @@ Some clients have used these lists in the past, but they should work on transiti
}
```
### Link Safety
A kind `10099` replaceable event for storing user domain preferences.
```jsonc
{
"kind": 10099,
"content": "",
"tags": [
["d", "domain_lists"], // identifier
["white", "nostr.build"],
["white", "void.cat"],
["black", "malicious-site.net"],
["black", "scam-domain.com"]
["unknown", "ask"] // Options: "load" | "block" | "ask"
]
}
```
## Encryption process pseudocode
```scala