@cashu/cashu-ts
    Preparing search index...

    Type Alias MeltProofOptions

    Optional parameters for configuring the Melting Proof operation:

    • keysetId: override the keysetId derived from the current mintKeys with a custom one. This should be a keyset that was fetched from the /keysets endpoint.
    • counter: optionally set counter to derive secret deterministically. CashuWallet class must be initialized with seed phrase to take effect.
    • privkey: will create a signature on the proofs secrets if set.
    type MeltProofOptions = {
        counter?: number;
        keysetId?: string;
        privkey?: string;
    }
    Index

    Properties

    counter?: number
    keysetId?: string
    privkey?: string