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

