UNPKG

@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.

12 lines (11 loc) 275 B
/** * Result of signing request */ export interface ISigningResult { /** Id of the Verification method */ verificationMethod: string; /** The value of th signature */ signatureValue: string; /** When the signature was created */ created: string; }