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.

8 lines (7 loc) 224 B
import { ILinkedDataSignature } from "./ILinkedDataSignature"; /** * A JSON signed document must include a proof */ export interface IJsonSignedDocument extends Record<string, unknown> { proof: ILinkedDataSignature; }