Files
2022-03-21 19:45:48 +01:00

16 lines
290 B
JavaScript

const axios = require("axios")
async function tvl(timestamp) {
const stakedStacks = await axios.get(`https://api.stacking.club/api/tvl?timestamp=${timestamp * 1000}`)
return {
"blockstack": stakedStacks.data
};
}
module.exports = {
stacks: {
tvl
},
}