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

    Type Alias BatchMintRequest

    Payload that needs to be sent to the mint when requesting a NUT-29 batched mint.

    type BatchMintRequest = {
        outputs: SerializedBlindedMessage[];
        quote_amounts: Amount[];
        quotes: string[];
        signatures?: (string | null)[];
    }
    Index

    Properties

    Outputs (blinded messages) to be signed by the mint.

    quote_amounts: Amount[]

    Array of amounts that shall be minted per quote id.

    quotes: string[]

    Array of Quote IDs received from the mint.

    signatures?: (string | null)[]

    Optional. Signatures for the Public key the quote is locked to (NUT-20) (same order as quote ids). If some quotes are unlocked null is expected. Can be omitted if all quotes are unlocked.