8 lines
No EOL
216 B
JavaScript
8 lines
No EOL
216 B
JavaScript
const axios = require("axios");
|
|
|
|
const getSatBEstimateFee = () => {
|
|
return axios.get('https://mempool.space/api/v1/fees/recommended')
|
|
.then(r => r.data.hourFee)
|
|
}
|
|
|
|
module.exports = { getSatBEstimateFee } |