15 lines
236 B
TypeScript
15 lines
236 B
TypeScript
export interface SignedEvent {
|
|
kind: number
|
|
tags: string[][]
|
|
content: string
|
|
created_at: number
|
|
pubkey: string
|
|
id: string
|
|
sig: string
|
|
}
|
|
|
|
export interface NostrJoiningBlock {
|
|
block: number
|
|
encodedEventPointer: string
|
|
}
|