@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) • 446 B
TypeScript
/// <reference types="node" />
import { Document as DidDocument } from "@iota/identity-wasm/node";
/**
* Signing Response
*/
export interface ISigningRequest {
/** DID Document */
didDocument: DidDocument;
/** Message to be signed */
message: Buffer;
/** Type of signature */
type: string;
/** Method for signing and verification */
method: string;
/** Private key used for signing */
secret: string;
}