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) 326 B
import { Subscriber } from "@jmcanterafonseca-iota/iota_streams_wasm"; export interface IAnchoringRequest { /** The channel ID */ channelID: string; /** The IOTA Streams Subscriber */ subscriber: Subscriber; /** The message */ message: string; /** The anchorage point */ anchorageID: string; }