mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-01-12 16:53:02 +08:00
14 lines
367 B
JavaScript
14 lines
367 B
JavaScript
const {fetchURL} = require('./helper/utils')
|
|
const {toUSDTBalances} = require('./helper/balances')
|
|
|
|
async function tvl(){
|
|
const data = await fetchURL("https://mainnet.analytics.tinyman.org/api/v1/general-statistics/")
|
|
return toUSDTBalances(data.data.total_liquidity_in_usd)
|
|
}
|
|
|
|
module.exports={
|
|
misrepresentedTokens:true,
|
|
algorand:{
|
|
tvl
|
|
}
|
|
} |