UNPKG

jsonld-signatures-merkleproof2019

Version:

A jsonld signature implementation to support MerkleProof2019 verification in Verifiable Credential context

13 lines (11 loc) 216 B
export interface MerkleProof2019 { type: string; created: string; proofValue: string; proofPurpose: string; verificationMethod: string; } export interface MerklePath { left?: string; right?: string; }