summaryrefslogtreecommitdiff
path: root/gui/src/types/nostr.ts
blob: 90610d14df358af213498899015ae8bc7ee45e4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
export type Event = {
  id: string; // hex, no 0x, 32bytes
  pubkey: string; // ""
  sig: string; // "", 64 bytes
  created_at: number;
  kind: number;
  tags: Tag[];
  content: string;
};

export type NostrEvent = Event;
export type Tag = string[];