@curvefi/api 2.65.5 → 2.65.6
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/pools/utils.js +1 -1
- package/package.json +1 -1
package/lib/pools/utils.js
CHANGED
|
@@ -319,7 +319,7 @@ export const getUserPoolList = (address = curve.signerAddress, useApi = true) =>
|
|
|
319
319
|
});
|
|
320
320
|
export const _getAmplificationCoefficientsFromApi = () => __awaiter(void 0, void 0, void 0, function* () {
|
|
321
321
|
const network = curve.constants.NETWORK_NAME;
|
|
322
|
-
const allTypesExtendedPoolData = yield _getAllPoolsFromApi(network);
|
|
322
|
+
const allTypesExtendedPoolData = yield _getAllPoolsFromApi(network, curve.isLiteChain);
|
|
323
323
|
const amplificationCoefficientDict = {};
|
|
324
324
|
for (const extendedPoolData of allTypesExtendedPoolData) {
|
|
325
325
|
for (const pool of extendedPoolData.poolData) {
|