From 48dca263440ca56f905e36b02c587f0e9262622f Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Sun, 23 Jun 2024 14:13:47 -0300 Subject: [PATCH] add NIP-87: Relay Management API. --- 87.md | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ README.md | 1 + 2 files changed, 52 insertions(+) create mode 100644 87.md diff --git a/87.md b/87.md new file mode 100644 index 00000000..a58ff315 --- /dev/null +++ b/87.md @@ -0,0 +1,51 @@ +NIP-87 +====== + +Relay Management API +-------------------- + +`draft` `optional` + +Relays may provide an API for performing management tasks. This is made available as a JSON-RPC-like request-response protocol over HTTP, on the same URI as the relay's websocket. + +When a relay receives an HTTP(s) request with an `Authorization` header and a `Content-Type` header of `application/nostr+json+rpc` to a URI supporting WebSocket upgrades, it should parse the request as a JSON document with the following fields: + +```json +{ + "method": "", + "params": ["", "", ""] +} +``` + +Then it should return a response in the format + +```json +{ + "result": {"": ""}, + "error": "" +} +``` + +This is the list of **methods** that may be supported: + +* `supportedmethods`: + - params: `[]` + - result: `["", "", ...]` (an array with the names of all the other supported methods) +* `banpubkey`: + - params: `["", ""]` + - result: `true` (a boolean always set to `true`) +* `listbannedpubkeys`: + - params: `[]` + - result: `[{"pubkey": "<32-byte hex>", "reason": ""}, ...]`, an array of objects +* `allowpubkey`: + - params: `["", ""]` + - result: `true` (a boolean always set to `true`) +* `listallowedpubkeys`: + - params: `[]` + - result: `[{"pubkey": "<32-byte hex>", "reason": ""}, ...]`, an array of objects +* `banevent`: + - params: `["", ""]` + - result: `true` (a boolean always set to `true`) +* `listbannedevents`: + - params: `[]` + - result: `[{"id": "<32-byte hex>", "reason": ""}, ...]`, an array of objects diff --git a/README.md b/README.md index 02773a5d..e7340d04 100644 --- a/README.md +++ b/README.md @@ -79,6 +79,7 @@ They exist to document what may be implemented by [Nostr](https://github.com/nos - [NIP-75: Zap Goals](75.md) - [NIP-78: Application-specific data](78.md) - [NIP-84: Highlights](84.md) +- [NIP-87: Relay Management API](87.md) - [NIP-89: Recommended Application Handlers](89.md) - [NIP-90: Data Vending Machines](90.md) - [NIP-92: Media Attachments](92.md)