From d17fba3edc6d431ff0613f0fae22fc7053a2d1a9 Mon Sep 17 00:00:00 2001 From: g1nt0ki <99907941+g1nt0ki@users.noreply.github.com> Date: Thu, 15 Aug 2024 12:12:49 +0200 Subject: [PATCH] Revert "fix: marinade tvl (#11306)" (#11308) This reverts commit 45c253c46cde41963412a38eb783a2c850d7db74. --- projects/marinade.js | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/projects/marinade.js b/projects/marinade.js index 82d33f65dc4..18b1555992e 100644 --- a/projects/marinade.js +++ b/projects/marinade.js @@ -10,14 +10,11 @@ async function tvl() { account: { validatorSystem: { totalActiveBalance }, availableReserveBalance, - emergencyCoolingDown, }, },] = await program.account.state.all() - const balances = { - solana: (+totalActiveBalance + +availableReserveBalance + +emergencyCoolingDown) / 1e9 + solana: (+totalActiveBalance + +availableReserveBalance) / 1e9 } - return sumTokens2({ balances, solOwners: ['UefNb6z6yvArqe4cJHTXCqStRsKmWhGxnZzuHbikP5Q'] }) // Liq Pool Sol Leg Pda } @@ -27,5 +24,5 @@ module.exports = { ], timetravel: false, solana: { tvl }, - methodology: `We sum the amount of SOL staked, SOL in reserve address: Du3Ysj1wKbxPKkuPPnvzQLQh8oMSVifs3jGZjJWXFmHN, SOL in the Liquidity pool: UefNb6z6yvArqe4cJHTXCqStRsKmWhGxnZzuHbikP5Q, and the emergency cooling down balance.`, -} \ No newline at end of file + methodology: `We sum the amount of SOL staked, SOL in reserve address: Du3Ysj1wKbxPKkuPPnvzQLQh8oMSVifs3jGZjJWXFmHN and SOL in the Liquidity pool: UefNb6z6yvArqe4cJHTXCqStRsKmWhGxnZzuHbikP5Q`, +}