You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
530 B
13 lines
530 B
import { Event } from 'nostr-tools' |
|
import nip89Service from '@/services/nip89.service' |
|
|
|
/** |
|
* Create the Imwald application handler info event (kind 31990). |
|
* This can be published using the existing publish function from NostrProvider. |
|
*/ |
|
export function createImwaldHandlerInfoEvent(pubkey: string): Omit<Event, 'id' | 'sig'> { |
|
return nip89Service.createImwaldHandlerInfo(pubkey) |
|
} |
|
|
|
/** @deprecated Use {@link createImwaldHandlerInfoEvent} */ |
|
export const createJumbleImWaldHandlerInfoEvent = createImwaldHandlerInfoEvent
|
|
|