feat(DittoEvent): add zap_message field

This commit is contained in:
P. Reis 2024-09-16 13:30:01 -03:00
parent 07c364b829
commit 7fea333483

View file

@ -42,4 +42,5 @@ export interface DittoEvent extends NostrEvent {
/** Kind 0 or pubkey that zapped */ /** Kind 0 or pubkey that zapped */
zap_sender?: DittoEvent | string; zap_sender?: DittoEvent | string;
zap_amount?: number; zap_amount?: number;
zap_message?: string;
} }