mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-01-12 08:34:23 +08:00
12 lines
257 B
JavaScript
12 lines
257 B
JavaScript
const { get } = require('./helper/http')
|
|
|
|
async function tvl(api) {
|
|
const result = await get('https://btn.group/pools/tvl')
|
|
return api.addUSDValue(result)
|
|
}
|
|
|
|
module.exports = {
|
|
deadFrom: '2025-09-01',
|
|
misrepresentedTokens: true,
|
|
secret: { tvl },
|
|
} |