Skip to content

Commit 34d88ef

Browse files
authored
Merge pull request #1067 from DefiLlama/abmfix
patch
2 parents 5e6e223 + de9adae commit 34d88ef

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/adaptors/alien-base-amm/index.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,13 @@ const getPoolDetails = async (block, poolInfo, chainString) => {
1717
// console.log(poolInfo);
1818
for (let i = 0; i < poolInfo.length; i++) {
1919
// SKIP LP OF ALB STANDALONE
20-
if (poolInfo[i].lpToken != '0x1dd2d631c92b1aCdFCDd51A0F7145A50130050C4') {
20+
if (
21+
![
22+
'0x1dd2d631c92b1aCdFCDd51A0F7145A50130050C4',
23+
'0x840dCB7b4d3cEb906EfD00c8b5F5c5Dd61d7f8a6',
24+
'0xfA52C8902519e4Da95C3C520039C676d5bD4d9a2'
25+
].includes(poolInfo[i].lpToken)
26+
) {
2127
const token0Id = (
2228
await sdk.api.abi.call({
2329
target: poolInfo[i].lpToken,

0 commit comments

Comments
 (0)