mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-01-12 16:53:02 +08:00
10 lines
217 B
JavaScript
10 lines
217 B
JavaScript
const utils = require('./helper/utils')
|
|
|
|
async function fetch(){
|
|
const tvl = await utils.fetchURL("https://public.nerve.network/nerve/tvl")
|
|
return Number(tvl.data.totalUsdTvl)
|
|
}
|
|
|
|
module.exports = {
|
|
fetch
|
|
} |