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

    Interface MintPreview<TQuote>

    Preview of a mint transaction created by prepareMint.

    interface MintPreview<
        TQuote extends
            Pick<MintQuoteBaseResponse, "quote"> = MintQuoteBaseResponse,
    > {
        keysetId: string;
        method: string;
        outputData: OutputDataLike[];
        payload: MintRequest;
        quote: TQuote;
    }

    Type Parameters

    Index

    Properties

    keysetId: string

    Keyset ID used to prepare the outputs.

    method: string
    outputData: OutputDataLike[]

    Blinding data required to construct proofs.

    payload: MintRequest

    Mint payload to be sent to the mint.

    quote: TQuote

    Mint Quote object.