lamassu-server/lib/blockexplorers/mempool.space.js
2024-01-07 21:49:53 +00:00

8 lines
No EOL
214 B
JavaScript

const axios = require("axios");
const getEstimateFeeBtc = () => {
return axios.get('https://mempool.space/api/v1/fees/recommended')
.then(r => r.data.hourFee)
}
module.exports = { getEstimateFeeBtc }