Documentation Index
Fetch the complete documentation index at: https://docs.superlink.me/llms.txt
Use this file to discover all available pages before exploring further.
Reverse resolve Subdomain by providing the ethereum address that was used during creation.
// See documentation to set up the client first
let apiInstance = new superlink.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}`)
}
});