Skip to content

Commit

Permalink
Revert "fix: marinade tvl (DefiLlama#11306)" (DefiLlama#11308)
Browse files Browse the repository at this point in the history
This reverts commit 45c253c.
  • Loading branch information
g1nt0ki authored Aug 15, 2024
1 parent 45c253c commit d17fba3
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions projects/marinade.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand All @@ -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.`,
}
methodology: `We sum the amount of SOL staked, SOL in reserve address: Du3Ysj1wKbxPKkuPPnvzQLQh8oMSVifs3jGZjJWXFmHN and SOL in the Liquidity pool: UefNb6z6yvArqe4cJHTXCqStRsKmWhGxnZzuHbikP5Q`,
}

0 comments on commit d17fba3

Please sign in to comment.