@tangle-js/anchors
Version:
Anchoring messages to the Tangle. Powered by IOTA Streams
12 lines (11 loc) • 392 B
TypeScript
/** Options for creating a channel */
export interface IChannelOptions {
/** The node used */
node?: string;
/** The permanode used */
permanode?: string;
/** Whether the data is going to be encrypted or not on the Tangle */
encrypted?: boolean;
/** Whether the channel is private and only authorized subscribers can get access to it */
isPrivate?: boolean;
}