// See documentation to set up the client first
let apiInstance = new superlink.ResolutionApi();
let address = "0xYourWalletAddress";
apiInstance.resolveDataByAddress(address, {}, (error, data, response) => {
if (error) {
console.error(error);
} else {
console.log(`${data.domain}`)
data.wallets.forEach(wallet => {
console.log(wallet.coin, wallet.address);
})
}
});