NIP-65: Relay list metada (#238)

This commit is contained in:
Alejandro
2023-02-10 20:23:52 +01:00
committed by GitHub
parent d13904b8e2
commit 5153f5c90a
29 changed files with 304 additions and 20 deletions

View File

@ -41,6 +41,7 @@ export type RawReqFilter = {
"#p"?: u256[];
"#t"?: string[];
"#d"?: string[];
"#r"?: string[];
search?: string;
since?: number;
until?: number;
@ -68,3 +69,8 @@ export type UserMetadata = {
export enum Lists {
Muted = "mute",
}
export interface RelaySettings {
url: string;
settings: { read: boolean; write: boolean };
}