UNPKG

@ew-did-registry/credentials-interface

Version:
16 lines (15 loc) 449 B
import { TypedDataField } from '@ethersproject/abstract-signer'; export interface EIP712Proof { [x: string]: string | string[] | any; '@context': string | string[]; type: string; proofPurpose: string; proofValue: string; verificationMethod: string; created: string; eip712Domain: { domain: Record<string, string>; messageSchema: Record<string, TypedDataField[]>; primaryType: string; }; }