Skip to content

Commit

Permalink
Merge pull request #245 from curvefi/fix/fixed-offpegFeeMultiplier
Browse files Browse the repository at this point in the history
fix: fixed offpegFeeMultiplier in deploystableNgMetaPool
  • Loading branch information
fedorovdg authored Dec 18, 2023
2 parents 146c331 + a800814 commit 1f10e5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@curvefi/api",
"version": "2.53.3",
"version": "2.53.4",
"description": "JavaScript library for curve.fi",
"main": "lib/index.js",
"author": "Macket",
Expand Down
2 changes: 1 addition & 1 deletion src/factory/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ const _deployStableNgMetaPool = async (

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

export const deployStableNgMetaPoolEstimateGas = async (
Expand Down

0 comments on commit 1f10e5c

Please sign in to comment.