13 lines
234 B
TypeScript
13 lines
234 B
TypeScript
export interface RelayInfo {
|
|
name?: string;
|
|
description?: string;
|
|
pubkey?: string;
|
|
contact?: string;
|
|
supported_nips?: number[];
|
|
software?: string;
|
|
version?: string;
|
|
limitation?: {
|
|
payment_required: boolean;
|
|
};
|
|
}
|