@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.mjs CHANGED
@@ -676,7 +676,7 @@ var CreateStreamHelper = class _CreateStreamHelper {
676
676
  };
677
677
  }
678
678
  amountForRecipient(recipient, numEpoch) {
679
- return recipient.amountPerEpoch * numEpoch + recipient.cliffAmount;
679
+ return BigInt(recipient.amountPerEpoch) * BigInt(numEpoch) + BigInt(recipient.cliffAmount);
680
680
  }
681
681
  get flatSuiFee() {
682
682
  return FLAT_FEE_SUI;