Cashu-TS - v3.3.0
    Preparing search index...

    Interface MeltPreview<TQuote>

    Preview of a Melt transaction created by prepareMelt.

    interface MeltPreview<
        TQuote extends MeltQuoteBaseResponse = MeltQuoteBolt11Response,
    > {
        inputs: Proof[];
        keysetId: string;
        method: string;
        outputData: OutputDataLike<HasKeysetKeys>[];
        quote: TQuote;
    }

    Type Parameters

    Index

    Properties

    inputs: Proof[]

    Inputs (Proofs) to be melted.

    keysetId: string

    Keyset ID used to prepare the outputs.

    method: string

    Outputs (blinded messages) that can be filled by the mint to return overpaid fees.

    quote: TQuote

    Melt Quote object.