degmods.com/src/types/nostr.ts
2024-08-08 21:18:37 +05:00

10 lines
150 B
TypeScript

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