@curvefi/api 2.60.0 → 2.60.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/lib/factory/deploy.js +0 -2
- package/package.json +1 -1
package/lib/factory/deploy.js
CHANGED
|
@@ -384,8 +384,6 @@ implementationIdx, methodName, oracleAddress, estimateGas) {
|
|
|
384
384
|
throw Error("Max name length = 32");
|
|
385
385
|
if (symbol.length > 10)
|
|
386
386
|
throw Error("Max symbol length = 10");
|
|
387
|
-
if (BN(fee).lt(0.04))
|
|
388
|
-
throw Error("fee must be >= 0.04%. Passed fee = ".concat(fee));
|
|
389
387
|
if (BN(fee).gt(1))
|
|
390
388
|
throw Error("fee must be <= 1%. Passed fee = ".concat(fee));
|
|
391
389
|
if (![0, 1].includes(implementationIdx))
|