getFeeStructure
Parameters
Returns
Example
import { ThothIdSDK } from "thoth-id-sdk";
async function getFeeStructure() {
try {
const sdk = new ThothIdSDK();
await sdk.loadContractIds();
const feeStructure = await sdk.getFeeStructure("htr");
console.log("Fee structure for .htr domain:", feeStructure);
} catch (error) {
console.error("Error getting fee structure:", error);
}
}
getFeeStructure();Last updated

