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