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

