24 lines
492 B
HTML
24 lines
492 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Page Title</title>
|
|
<script src="./../../../../dist/mempool.js"></script>
|
|
<script>
|
|
const init = async () => {
|
|
try {
|
|
const {
|
|
bisq: { statistics },
|
|
} = mempoolJS();
|
|
|
|
const stats = await statistics.getStats();
|
|
console.log(stats);
|
|
} catch (error) {
|
|
console.log(error);
|
|
}
|
|
};
|
|
init();
|
|
</script>
|
|
</head>
|
|
<body></body>
|
|
</html>
|