getMaxProfileDataEntries
Parameters
Returns
Example
import { ThothIdSDK } from "thoth-id-sdk";
async function getMaxProfileDataEntries() {
try {
const sdk = new ThothIdSDK();
await sdk.loadContractIds();
const maxEntries = await sdk.getMaxProfileDataEntries("htr");
console.log("Maximum profile data entries for .htr domain:", maxEntries);
} catch (error) {
console.error("Error getting max profile data entries:", error);
}
}
getMaxProfileDataEntries();Last updated

