Cashu-TS - v4.0.0-rc3
    Preparing search index...

    Interface MeltPreview<TQuote>

    Preview of a Melt transaction created by prepareMelt.

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

    Type Parameters

    Index

    Properties

    inputs: Proof[]

    Inputs (Proofs) to be melted.

    keysetId: string

    Keyset ID used to prepare the outputs.

    method: string
    outputData: OutputDataLike[]

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

    quote: TQuote

    Melt Quote object.