Skip to content

Commit

Permalink
track lama staking
Browse files Browse the repository at this point in the history
  • Loading branch information
g1nt0ki committed May 1, 2024
1 parent 7658a06 commit 4cc3b62
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion projects/LamaMiner/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,16 @@ const { sumTokensExport } = require("../helper/unknownTokens")
const LAMA_TOKEN_CONTRACT = '0x89A8633bcaD3af0951acC5137811ea21a17C37DC';
const LAMA_MINER_CONTRACT = '0x1f4292Cf1C0fDa5Ef1C3e9d1e59C13bd1808DD10';
const LP_LAMA_WAVAX = "0xf3336be3416916D26840f41780E0cBc861eF3B3C"
const LAMA_STAKING_CONTRACT = '0xc16ce7B683da825906c6CA8Df33986c6Ef9B287B';
const LP_LQDX_LAMA = "0x3a74922803415Dfc43c0030d47707b20f4c1b05d"


module.exports = {
misrepresentedTokens: true,
methodology: 'counts the number of LAMA tokens in the Lama Miner contract.',
start: 1711962980,
avax: {
tvl: sumTokensExport({ owner: LAMA_MINER_CONTRACT, tokens: [LAMA_TOKEN_CONTRACT], lps: [LP_LAMA_WAVAX], useDefaultCoreAssets: true, })
tvl: sumTokensExport({ owner: LAMA_MINER_CONTRACT, tokens: [LAMA_TOKEN_CONTRACT], lps: [LP_LAMA_WAVAX], useDefaultCoreAssets: true, }),
staking: sumTokensExport({ owner: LAMA_STAKING_CONTRACT, tokens: [LAMA_TOKEN_CONTRACT], lps: [LP_LAMA_WAVAX, LP_LQDX_LAMA], useDefaultCoreAssets: true, })
}
}

0 comments on commit 4cc3b62

Please sign in to comment.