nostr package part 1

This commit is contained in:
ennmichael
2023-02-15 21:46:05 +01:00
parent 20f2f40549
commit 0193436d96
23 changed files with 511 additions and 86 deletions

View File

@ -0,0 +1,12 @@
export interface RelayInfo {
name?: string;
description?: string;
pubkey?: string;
contact?: string;
supported_nips?: number[];
software?: string;
version?: string;
limitation?: {
payment_required: boolean;
};
}