Type alias BlindedTransaction

BlindedTransaction: {
    amounts: number[];
    blindedMessages: SerializedBlindedMessage[];
    rs: bigint[];
    secrets: Uint8Array[];
}

Data that the library needs to hold in memory while it awaits the blinded signatures for the mint. It is later used for unblinding the signatures.

Type declaration

  • amounts: number[]

    amounts denominated in Satoshi

  • blindedMessages: SerializedBlindedMessage[]

    Blinded messages sent to the mint for signing.

  • rs: bigint[]

    Blinding factor used for blinding messages and unblinding signatures after they are received from the mint.

  • secrets: Uint8Array[]

    secrets, kept client side for constructing proofs later.

Generated using TypeDoc