lamassu-server/packages/server/lib/blockexplorers/mempool.space.js
2025-05-12 15:35:00 +01:00

18 lines
375 B
JavaScript

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