WalletType

enum WalletType {
  CREATE = 'CREATE',
  RECOVER = 'RECOVER',
  IMPORT = 'IMPORT',
}

interface WalletCreationObject {
  did: string;
  privateKey: string;
  mnemonic: string;
  spk: KeyPair;
  token: string;
  shares: Shares;
}

Last updated