UNPKG

ethr-status-registry

Version:

Verifiable Credential status resolver using an ethereum contract as registry

9 lines (8 loc) 454 B
import { InfuraConfiguration, MultiProviderConfiguration } from './configuration'; import { SignerMethod } from './ExternalSignerProvider'; import { TransactionRequest } from '@ethersproject/providers'; export declare class EthrCredentialRevoker { private networks; constructor(conf: InfuraConfiguration | MultiProviderConfiguration); revoke(token: string, ethSign?: SignerMethod, txOptions?: Partial<TransactionRequest>): Promise<string>; }