Type Alias SendResponse

SendResponse: {
    keep: Proof[];
    send: Proof[];
    serialized?: { keep: boolean; proof: Proof }[];
}

response after sending

Type declaration

  • keep: Proof[]

    Proofs that exceeded the needed amount

  • send: Proof[]

    Proofs to be sent, matching the chosen amount

  • Optionalserialized?: { keep: boolean; proof: Proof }[]