Merge e70e4916aef058542edea76a3b723d17c721e70c into 0619f370bca3485bb9c5870bc2defa03c7c3d10e

This commit is contained in:
limina1 2025-03-16 19:52:15 -04:00 committed by GitHub
commit 9a9f916dd6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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