@ayanworks/polygon-did-resolver
Version:
The polygon resolver library is used for resolving DID’s in Polygon Method Space. The module is supposed to be used as an integeration to polygon library.
12 lines (11 loc) • 447 B
text/typescript
import { DIDResolver } from "did-resolver";
//#region src/resolver.d.ts
/**
* Factory function to create a DID Resolver with custom configuration.
* @param rpcUrl Optional override for the RPC
* @param contractAddress Optional override for the Registry Address
*/
declare function getResolver(rpcUrl?: string, contractAddress?: string): Record<string, DIDResolver>;
//#endregion
export { getResolver };
//# sourceMappingURL=resolver.d.mts.map