mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-04-29 13:25:30 +08:00
16 lines
254 B
JavaScript
16 lines
254 B
JavaScript
const axios = require('axios')
|
|
|
|
async function tvl(){
|
|
const tvl = await axios.get('https://api.spec.finance/api/stat')
|
|
return {
|
|
'terrausd': tvl.data.tvl,
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
timetravel: false,
|
|
terra:{
|
|
tvl
|
|
},
|
|
}
|