Skip to content
Open
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
22 changes: 11 additions & 11 deletions 11.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ An alternative contact may be listed under the `contact` field as well, with the

### Supported NIPs

As the Nostr protocol evolves, some functionality may only be available by relays that implement a specific `NIP`. This field is an array of the integer identifiers of `NIP`s that are implemented in the relay. Examples would include `1`, for `"NIP-01"` and `9`, for `"NIP-09"`. Client-side `NIPs` SHOULD NOT be advertised, and can be ignored by clients.
As the Nostr protocol evolves, some functionality may only be available by relays that implement a specific `NIP`. This field is an array of the `string` identifiers of `NIP`s that are implemented in the relay. Examples would include `1`, for `"NIP-01"` and `9a`, for `"NIP-9a"`. Client-side `NIPs` SHOULD NOT be advertised, and can be ignored by clients. For historical reasons, this MAY be a list of integers, and should be coerced to strings before making comparisons.

### Software

Expand Down Expand Up @@ -306,16 +306,16 @@ curl -H "Accept: application/nostr+json" https://jellyfish.land | jq
"contact": "hi@dezh.tech",
"software": "https://github.com/dezh-tech/immortal",
"supported_nips": [
1,
9,
11,
13,
17,
40,
42,
59,
62,
70
"1",
"9",
"11",
"13",
"17",
"40",
"42",
"59",
"62",
"70"
],
"version": "immortal - 0.0.9",
"relay_countries": [
Expand Down