UNPKG

@tangle.js/anchors

Version:

Anchoring messages to the Tangle. Powered by IOTA Streams

16 lines (15 loc) 373 B
/** The details of a channel */ export interface IChannelDetails { /** ID of the channel */ channelID: string; /** Channel Address */ channelAddr: string; /** First anchorage ID */ firstAnchorageID: string; /** Author's seed */ authorSeed: string; /** Author's Public Key */ authorPubKey: string; /** Node */ node: string; }