2021-08-10 01:30:13 -03:00
|
|
|
import bisqJS from "./../../../src/index-bisq";
|
2021-04-14 17:27:28 -03:00
|
|
|
|
|
|
|
const init = async () => {
|
2021-08-10 01:30:13 -03:00
|
|
|
const { addresses } = bisqJS();
|
2021-04-14 17:27:28 -03:00
|
|
|
|
|
|
|
const address = 'B1DgwRN92rdQ9xpEVCdXRfgeqGw9X4YtrZz';
|
|
|
|
|
|
|
|
const myAddress = await addresses.getAddress({ address });
|
|
|
|
console.log(myAddress);
|
|
|
|
};
|
|
|
|
init();
|