mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-01-12 16:53:02 +08:00
20 lines
387 B
JavaScript
20 lines
387 B
JavaScript
const retry = require('./helper/retry');
|
|
const axios = require('axios');
|
|
|
|
async function fetch() {
|
|
const response = (
|
|
await retry(
|
|
async (bail) => await axios.get('https://serum-volume-tracker.vercel.app/')
|
|
)
|
|
).data;
|
|
|
|
const tvl = response.tvl;
|
|
|
|
return tvl
|
|
}
|
|
|
|
module.exports = {
|
|
timetravel: false,
|
|
fetch,
|
|
};
|