From dbb6e306f69736b9130a5c6e5f781f548d9553f2 Mon Sep 17 00:00:00 2001 From: g1ntoki <99907941+g1nt0ki@users.noreply.github.com> Date: Thu, 17 Oct 2024 02:24:21 +0200 Subject: [PATCH] fix meteora tvl --- projects/mercurial.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/projects/mercurial.js b/projects/mercurial.js index 7848842675b..747ab9a6632 100644 --- a/projects/mercurial.js +++ b/projects/mercurial.js @@ -99,7 +99,9 @@ async function tvl() { tokensAndOwners.push([i.tokenAMint, i.aVault]) tokensAndOwners.push([i.tokenBMint, i.bVault]) }) - return sumTokens2({ tokensAndOwners }) + const balances = await sumTokens2({ tokensAndOwners }) + delete balances['solana:AwRErBEFGTnohzfLeRSBH9HddQEy2oeRxnWLrbvFFh95'] + return balances } module.exports = {