2024-02-28 16:49:44 +00:00
|
|
|
export interface SignedEvent {
|
|
|
|
kind: number
|
|
|
|
tags: string[][]
|
|
|
|
content: string
|
|
|
|
created_at: number
|
|
|
|
pubkey: string
|
|
|
|
id: string
|
|
|
|
sig: string
|
|
|
|
}
|
2024-04-16 06:12:29 +00:00
|
|
|
|
|
|
|
export interface RelaySet {
|
|
|
|
read: string[]
|
|
|
|
write: string[]
|
|
|
|
}
|
2024-05-10 10:57:04 +00:00
|
|
|
|
|
|
|
export interface NostrJoiningBlock {
|
|
|
|
block: number
|
|
|
|
encodedEventPointer: string
|
|
|
|
}
|