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

