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