@jmcanterafonseca-iota/anchoring-channels
Version:
Powered by IOTA Streams, Anchor Channels is an easy to be used library that allows to anchor messages to the Tangle.
14 lines (13 loc) • 388 B
TypeScript
/// <reference types="node" />
export interface IVerificationRequest {
/** Message to be verified */
message: Buffer;
/** The type of signature */
type: string;
/** The signature (proof) value */
signatureValue: string;
/** Node to be used to resolve identities */
node?: string;
/** Verification method from a DID */
verificationMethod: string;
}