Files
snort/packages/system/src/relay-info.ts
2023-06-21 16:48:35 +01:00

17 lines
346 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;
auth_required: boolean;
};
}