did-provider-quick
Version:
Veramo plugin that can enable creation and control of did:quick identifiers.
7 lines • 536 B
TypeScript
import { IAgentContext, ICredentialPlugin, IDataStore, IDataStoreORM, IPluginMethodMap, VerifiableCredential } from "@veramo/core-types";
export type IRequiredContext = IAgentContext<IDataStore & IDataStoreORM & ICredentialPlugin>;
export interface IQuickDIDRelayer extends IPluginMethodMap {
saveCredential: (credential: VerifiableCredential, context: IRequiredContext) => Promise<boolean>;
postPendingUpdates: (batchSize: number, context: IRequiredContext) => Promise<boolean>;
}
//# sourceMappingURL=IQuickDIDRelayer.d.ts.map