mirror of
https://github.com/nbd-wtf/nostr-tools.git
synced 2025-12-08 16:28:49 +00:00
16 lines
280 B
TypeScript
16 lines
280 B
TypeScript
import type { Event } from './pure.ts'
|
|
|
|
/** Build an event for testing purposes. */
|
|
export function buildEvent(params: Partial<Event>): Event {
|
|
return {
|
|
id: '',
|
|
kind: 1,
|
|
pubkey: '',
|
|
created_at: 0,
|
|
content: '',
|
|
tags: [],
|
|
sig: '',
|
|
...params,
|
|
}
|
|
}
|