getManagerNames
Parameters
Returns
Example
import { ThothIdSDK } from "thoth-id-sdk";
async function getManagerNames() {
try {
const sdk = new ThothIdSDK();
await sdk.loadContractIds();
const names = await sdk.getManagerNames("WALLET_ADDRESS", "htr");
console.log("Names managed by the address:", names);
} catch (error) {
console.error("Error getting manager names:", error);
}
}
getManagerNames();Last updated

