@tangle-js/anchors
Version:
Anchoring messages to the Tangle. Powered by IOTA Streams
16 lines (15 loc) • 462 B
TypeScript
import type { Subscriber } from "@tangle.js/streams-wasm/node/streams.js";
export interface IFetchRequest {
/** The channel ID */
channelID: string;
/** Whether the channel is encrypted */
encrypted: boolean;
/** Whether the channel is private */
isPrivate: boolean;
/** The specific message */
msgID?: string;
/** The anchorage */
anchorageID: string;
/** The IOTA Streams Subscriber */
subscriber: Subscriber;
}