mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-04-29 05:15:28 +08:00
13 lines
321 B
JavaScript
13 lines
321 B
JavaScript
const utils = require('../helper/utils');
|
|
|
|
const tvl = async (api) => {
|
|
const { data } = await utils.fetchURL('https://vite-api.thomiz.dev/tvl/beefstake')
|
|
return api.addUSDValue(Math.round(data.tvl))
|
|
}
|
|
|
|
module.exports = {
|
|
deadFrom: "2024-06-01",
|
|
timetravel: false,
|
|
misrepresentedTokens: true,
|
|
vite: { tvl },
|
|
} |