@decentralized-identity/ion-cli
Version:
A Command Line Interface (CLI) to make working with the ION network and using ION DIDs easy peasy lemon squeezy.
16 lines (15 loc) • 633 B
TypeScript
/**
* Class describing the initial state of the DID.
*/
export default class InitialState {
readonly shortForm: string;
readonly longForm: string;
readonly ops: [any];
/**
* Constructs a new instance on the @see CurrentState class.
* @param shortForm hash-based version of the DID URI string (only resolvable when anchored).
* @param longForm fully self-resolving payload-embedded version of the DID URI string.
* @param ops array of all operations that have been included in the state chain of the DID.
*/
constructor(shortForm: string, longForm: string, ops: [any]);
}