UNPKG

@getalby/paidmcp

Version:

Charge for your MCP Server tools using Nostr Wallet Connect

11 lines (10 loc) 257 B
export interface IWallet { requestInvoice(args: { satoshi: number; description: string; }): Promise<{ payment_request: string; payment_hash: string; }>; verifyPayment(paymentHash: string): Promise<boolean>; }