@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.
18 lines (17 loc) • 626 B
TypeScript
export default abstract class AnchoringChannelErrorNames {
static CHANNEL_NOT_BOUND: string;
static ANCHORAGE_NOT_FOUND: string;
static MSG_NOT_FOUND: string;
static CHANNEL_BINDING_ERROR: string;
static CHANNEL_ALREADY_BOUND: string;
static OTHER_ERROR: string;
static INVALID_NODE: string;
static INVALID_DID: string;
static DID_NOT_FOUND: string;
static INVALID_DID_METHOD: string;
static DID_NOT_VERIFIED: string;
static INVALID_SIGNING_KEY: string;
static NOT_SUPPORTED_SIGNATURE: string;
static INVALID_DATA_TYPE: string;
static JSON_DOC_NOT_SIGNED: string;
}