mempool/examples/html/bitcoin/difficulty.html
2021-07-23 17:58:54 -03:00

21 lines
442 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<script src="https://mempool.space/mempool.js"></script>
<script>
const init = async () => {
const {
bitcoin: { difficulty },
} = mempoolJS();
const difficultyAdjustment = await difficulty.getDifficultyAdjustment();
console.log(difficultyAdjustment);
};
init();
</script>
</head>
<body></body>
</html>