2024-08-08 16:18:37 +00:00
|
|
|
export interface SignedEvent {
|
|
|
|
kind: number
|
|
|
|
tags: string[][]
|
|
|
|
content: string
|
|
|
|
created_at: number
|
|
|
|
pubkey: string
|
|
|
|
id: string
|
|
|
|
sig: string
|
|
|
|
}
|
2024-11-05 12:57:39 +00:00
|
|
|
|
|
|
|
export interface Addressable {
|
|
|
|
author: string
|
|
|
|
id: string
|
|
|
|
aTag: string
|
|
|
|
}
|