@msafe/sui-app-store 0.0.14 → 0.0.15

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
@@ -706,7 +706,7 @@ var CreateStreamHelper = class _CreateStreamHelper {
706
706
  };
707
707
  }
708
708
  amountForRecipient(recipient, numEpoch) {
709
- return recipient.amountPerEpoch * numEpoch + recipient.cliffAmount;
709
+ return BigInt(recipient.amountPerEpoch) * BigInt(numEpoch) + BigInt(recipient.cliffAmount);
710
710
  }
711
711
  get flatSuiFee() {
712
712
  return FLAT_FEE_SUI;