Cashu-TS - v4.5.1
    Preparing search index...

    Interface BatchMintPreview<TQuote>

    Preview of a batched mint transaction created by prepareBatchMint.

    Contains JSON-unsafe values (bigint, Uint8Array). Not intended for direct serialization.

    interface BatchMintPreview<
        TQuote extends
            Pick<MintQuoteBaseResponse, "quote" | "pubkey"> = MintQuoteBaseResponse,
    > {
        keysetId: string;
        method: string;
        outputData: OutputDataLike[];
        payload: BatchMintRequest;
        quotes: TQuote[];
    }

    Type Parameters

    Index

    Properties

    keysetId: string

    Keyset ID used to prepare the outputs.

    method: string
    outputData: OutputDataLike[]

    Blinding data required to construct proofs (consolidated across all quotes).

    Batch mint payload to be sent to the mint.

    quotes: TQuote[]

    Mint Quote objects included in this batch.