Files
DefiLlama-Adapters/projects/vitcswap/api.js
2025-08-14 13:30:38 +01:00

16 lines
275 B
JavaScript

const { get } = require('../helper/http')
async function tvl() {
return {
tether: (await get('https://vite-api.thomiz.dev/tvl/vitcswap')).tvl
}
}
module.exports = {
deadFrom: "2025-03-01",
timetravel: false,
misrepresentedTokens: true,
vite:{
tvl
},
}