Reverse resolve Subdomain by providing the ethereum address that was used during creation.
// See documentation to set up the client firstlet apiInstance =newsuperlink.SubdomainApi();let parentDomain ="supertest.me";let ethAddress ="0xA4D70E9dd42Fef6Af37EBD48a1bA5Bc1D695Ee72";apiInstance.subdomainReverseResolve(parentDomain, ethAddress,(error, data, response)=>{if(error){console.error(error);}else{console.log(`${data.domain}`)}});