@dorafactory/maci-sdk 0.0.56 → 0.1.1
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 +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/libs/contract/utils.ts +2 -2
package/dist/index.js
CHANGED
|
@@ -4810,13 +4810,13 @@ function getAMaciRoundCircuitFee(network, maxVoter, maxOption) {
|
|
|
4810
4810
|
if (network === "mainnet") {
|
|
4811
4811
|
requiredFee.amount = "20000000000000000000";
|
|
4812
4812
|
} else {
|
|
4813
|
-
requiredFee.amount = "
|
|
4813
|
+
requiredFee.amount = "20000000000000000000";
|
|
4814
4814
|
}
|
|
4815
4815
|
} else if (maxVoter <= 625 && maxOption <= 25) {
|
|
4816
4816
|
if (network === "mainnet") {
|
|
4817
4817
|
requiredFee.amount = "750000000000000000000";
|
|
4818
4818
|
} else {
|
|
4819
|
-
requiredFee.amount = "
|
|
4819
|
+
requiredFee.amount = "750000000000000000000";
|
|
4820
4820
|
}
|
|
4821
4821
|
} else {
|
|
4822
4822
|
throw new Error("Number of voters or options is too large.");
|