21 lines
442 B
HTML
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>
|