sigit.io/src/types/nostr.ts

15 lines
216 B
TypeScript
Raw Normal View History

export interface SignedEvent {
kind: number
tags: string[][]
content: string
created_at: number
pubkey: string
id: string
sig: string
}
export interface RelaySet {
read: string[]
write: string[]
}