Use this to perform a reverse resolution of a wallet address.
// See documentation to set up the client firstlet apiInstance =newsuperlink.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);})}});