feat(DittoEvent): add zapped, zap_sender & zap_amount

This commit is contained in:
P. Reis 2024-09-16 13:10:10 -03:00
parent 8b5940298c
commit 6e2508063b

View file

@ -37,4 +37,9 @@ export interface DittoEvent extends NostrEvent {
reported_notes?: DittoEvent[]; reported_notes?: DittoEvent[];
/** Admin event relationship. */ /** Admin event relationship. */
info?: DittoEvent; info?: DittoEvent;
/** Kind 1 being zapped */
zapped?: DittoEvent;
/** Kind 0 or pubkey that zapped */
zap_sender?: DittoEvent | string;
zap_amount?: number;
} }