2021-05-20 12:03:40 -03:00
|
|
|
import mempoolJS from "@mempool/mempool.js";
|
2021-04-14 17:27:28 -03:00
|
|
|
|
|
|
|
const init = async () => {
|
|
|
|
const {
|
|
|
|
bisq: { addresses },
|
|
|
|
} = mempoolJS();
|
|
|
|
|
|
|
|
const address = 'B1DgwRN92rdQ9xpEVCdXRfgeqGw9X4YtrZz';
|
|
|
|
|
|
|
|
const myAddress = await addresses.getAddress({ address });
|
|
|
|
console.log(myAddress);
|
|
|
|
};
|
|
|
|
init();
|