@interest-protocol/vortex-sdk 8.1.0 → 8.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -38792,7 +38792,10 @@ const getUnspentUtxosWithApiAndCommitments = async ({ commitments, vortexKeypair
38792
38792
  try {
38793
38793
  const encryptedOutputHex = toHex(Uint8Array.from(commitment.encryptedOutput));
38794
38794
  const utxo = vortexKeypair.decryptUtxo(encryptedOutputHex);
38795
- userCommitments.push(commitment);
38795
+ userCommitments.push({
38796
+ coinType: commitment.coinType,
38797
+ encryptedOutput: commitment.encryptedOutput,
38798
+ });
38796
38799
  allUtxos.push(utxo);
38797
38800
  }
38798
38801
  catch {