@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.global.js +1 -1
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
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;
|