Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

reserve kind 5304 - profile gallery entry discovery #30

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions kinds/5304.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
---
layout: default
title: Nostr Gallery Entry Discovery
description: Job find Profile Gallery entries
---

# Output

A `content` JSON-stringified list of tags. Tags SHOULD be `e` and contain Kind 1163 events (NIP93).

# Params

* `max_results`: Maximum number of events to return (Optional parameter)

# How clients can use this

Clients can ask a Search DVM to return profiles based on certain filters.


# Example

#### Request
```json
{
"content": "",

"kind": 5304,
"tags":
[
["param","max_results","500"]
]
}
```

#### Response
```json
{
"kind": 6304,
"content": '
[ "e", "<...>" ],
[ "e", "<...>" ],
[ "e", "<...>" ],
[ "e", "<...>" ]
'
}
```
4 changes: 4 additions & 0 deletions ranges/53xx.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,8 @@ grid_navigation:
excerpt: "Used to search for profiles. Kind 5303"
cta: View
url: '/kinds/5303'
- title: Nostr Profile Gallery Entry Discovery
excerpt: "Used to discover profile gallery entries. Kind 5304"
cta: View
url: '/kinds/5304'
---