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

    Interface OutputDataLike

    Minimum interface for an output data object. OutputData helpers only require keyset id and keys. Custom implementations must satisfy this interface to be used with wallet operations.

    interface OutputDataLike {
        blindedMessage: SerializedBlindedMessage;
        blindingFactor: bigint;
        secret: Uint8Array;
        toProof: (
            signature: SerializedBlindedSignature,
            keyset: HasKeysetKeys,
        ) => Proof;
    }

    Implemented by

    Index

    Properties

    blindedMessage: SerializedBlindedMessage
    blindingFactor: bigint
    secret: Uint8Array
    toProof: (signature: SerializedBlindedSignature, keyset: HasKeysetKeys) => Proof