Skip to content

Commit 1f10e5c

Browse files
authored
Merge pull request #245 from curvefi/fix/fixed-offpegFeeMultiplier
fix: fixed offpegFeeMultiplier in deploystableNgMetaPool
2 parents 146c331 + a800814 commit 1f10e5c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@curvefi/api",
3-
"version": "2.53.3",
3+
"version": "2.53.4",
44
"description": "JavaScript library for curve.fi",
55
"main": "lib/index.js",
66
"author": "Macket",

src/factory/deploy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ const _deployStableNgMetaPool = async (
309309

310310
const gasLimit = mulBy1_3(DIGas(gas));
311311
await curve.updateFeeData();
312-
return await contract.deploy_metapool(basePool, name, symbol, coin, _A, _fee, offpegFeeMultiplier, emaTime, implementationIdx, assetType, methodId, oracleAddress, { ...curve.options, gasLimit });
312+
return await contract.deploy_metapool(basePool, name, symbol, coin, _A, _fee, _offpegFeeMultiplier, emaTime, implementationIdx, assetType, methodId, oracleAddress, { ...curve.options, gasLimit });
313313
}
314314

315315
export const deployStableNgMetaPoolEstimateGas = async (

0 commit comments

Comments
 (0)