* FIX: getBlocks optional params * v2.3.0 - new minor version for mempool-js - Add support for Bisq API - Add support for Liquid API - Change the main object to export network objects. - Change README.md instructions. Co-authored-by: softsimon <softsimon@users.noreply.github.com>
23 lines
523 B
HTML
23 lines
523 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Page Title</title>
|
|
<script src="https://mempool.space/mempool.js"></script>
|
|
<script>
|
|
const init = async () => {
|
|
const {
|
|
liquid: { fees },
|
|
} = mempoolJS();
|
|
|
|
const feesRecommended = await fees.getFeesRecommended();
|
|
console.log(feesRecommended);
|
|
|
|
const feesMempoolBlocks = await fees.getFeesMempoolBlocks();
|
|
console.log(feesMempoolBlocks);
|
|
};
|
|
init();
|
|
</script>
|
|
</head>
|
|
<body></body>
|
|
</html>
|