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

