* 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>
22 lines
476 B
HTML
22 lines
476 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Page Title</title>
|
|
<script src="https://mempool.space/mempool.js"></script>
|
|
<script>
|
|
const init = async () => {
|
|
const {
|
|
bisq: { addresses },
|
|
} = mempoolJS();
|
|
|
|
const address = 'B1DgwRN92rdQ9xpEVCdXRfgeqGw9X4YtrZz';
|
|
|
|
const myAddress = await addresses.getAddress({ address });
|
|
console.log(myAddress);
|
|
};
|
|
init();
|
|
</script>
|
|
</head>
|
|
<body></body>
|
|
</html>
|