Files
snort/packages/nostr/src/legacy/RelayInfo.ts
2023-03-28 15:34:01 +01:00

16 lines
318 B
TypeScript

export interface RelayInfo {
name?: string;
description?: string;
pubkey?: string;
contact?: string;
supported_nips?: number[];
software?: string;
version?: string;
limitation?: {
payment_required: boolean;
max_subscriptions: number;
max_filters: number;
max_event_tags: number;
};
}