@nostr-dev-kit/ndk
Version:
NDK - Nostr Development Kit. Includes AI Guardrails to catch common mistakes during development.
58 lines (49 loc) • 1.43 kB
text/typescript
import type { NDKNutzap } from "../events/kinds/nutzap";
import type { Proof } from "../events/kinds/nutzap/proof";
/**
* Provides information that should be used to send a NIP-61 nutzap.
* mints: URLs of the mints that can be used.
* relays: URLs of the relays where nutzap must be published
* p2pk: Optional pubkey to use for P2PK lock
*/
export type CashuPaymentInfo = {
/**
* Mints that must be used for the payment
*/
mints?: string[];
/**
* Relays where nutzap must be published
*/
relays?: string[];
/**
* Optional pubkey to use for P2PK lock
*/
p2pk?: string;
/**
* Tags to include in the proof secrets (e.g., [["e", "event-id"], ["P", "sender-pubkey"]])
* These tags will be added to the P2PK lock structure for replay protection and sender verification.
*/
proofTags?: [string, string][];
/**
* Intramint fallback allowed:
*
* When set to true, if cross-mint payments fail, we will
* fallback to sending an intra-mint payment.
*/
allowIntramintFallback?: boolean;
};
export type NDKZapConfirmationCashu = NDKNutzap;
/**
* This is what a wallet implementing Cashu payments should provide back
* when a payment has been requested.
*/
export type NDKPaymentConfirmationCashu = {
/**
* Proof of the payment
*/
proofs: Proof[];
/**
* Mint
*/
mint: string;
};