mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-04-28 21:05:32 +08:00
16 lines
275 B
JavaScript
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
|
|
},
|
|
} |