loadContractIds
Description
Parameters
Returns
Example
import { ThothIdSDK } from "thoth-id-sdk";
async function initializeSDK() {
// Create a new Sdk instance
const sdk = new ThothIdSDK();
// Load the contract ID map from the default endpoint
await sdk.loadContractIds();
console.log("Contract IDs loaded!");
return sdk;
}
initializeSDK();Last updated

