@nostr-dev-kit/ndk
Version:
NDK - Nostr Development Kit. Includes AI Guardrails to catch common mistakes during development.
13 lines (11 loc) • 380 B
text/typescript
import type { IEventHandlingStrategy, NDKNip46Backend } from "./index.js";
export default class GetPublicKeyHandlingStrategy implements IEventHandlingStrategy {
async handle(
backend: NDKNip46Backend,
_id: string,
_remotePubkey: string,
_params: string[],
): Promise<string | undefined> {
return backend.localUser?.pubkey;
}
}