@tangle-js/ld-proofs
Version:
Linked Data Proofs on the Tangle. Powered by IOTA Identity & IOTA Streams
10 lines (9 loc) • 327 B
TypeScript
/** Signing options. */
export interface ISigningOptions {
/** Signature Type. */
signatureType: string;
/** The method used for signing (referred as a DID fragment identifier). */
verificationMethod: string;
/** The secret either as a base58 string or as Uint8 Array. */
secret: string | Uint8Array;
}