Skip to content

Commit

Permalink
Merge pull request #412 from curvefi/fix/fix-router-curve-lite
Browse files Browse the repository at this point in the history
Fix/fix router curve lite
  • Loading branch information
fedorovdg authored Nov 18, 2024
2 parents 407e29f + ba1a04e commit 7dd09b3
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.65.5",
"version": "2.65.6",
"description": "JavaScript library for curve.fi",
"main": "lib/index.js",
"author": "Macket",
Expand Down
2 changes: 1 addition & 1 deletion src/pools/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ export const getUserPoolList = async (address = curve.signerAddress, useApi = tr

export const _getAmplificationCoefficientsFromApi = async (): Promise<IDict<number>> => {
const network = curve.constants.NETWORK_NAME;
const allTypesExtendedPoolData = await _getAllPoolsFromApi(network);
const allTypesExtendedPoolData = await _getAllPoolsFromApi(network, curve.isLiteChain);
const amplificationCoefficientDict: IDict<number> = {};

for (const extendedPoolData of allTypesExtendedPoolData) {
Expand Down

0 comments on commit 7dd09b3

Please sign in to comment.