Type alias IdObjectUseData

IdObjectUseData: {
    aci: {
        credentialHolderInformation: {
            idCredSecret: HexString;
        };
        prfKey: HexString;
    };
    randomness: HexString;
}

Can be computed with a seed phrase through the use of createIdentityCommitmentInputWithHdWallet. The seed phrase must be the once used during the identity issuance process with the identity provider.

Type declaration

  • aci: {
        credentialHolderInformation: {
            idCredSecret: HexString;
        };
        prfKey: HexString;
    }

    Account credential information including secrets and keys.

    • credentialHolderInformation: {
          idCredSecret: HexString;
      }

      Information held by the credential holder.

      • idCredSecret: HexString

        The identity credential secret.

    • prfKey: HexString

      The pseudorandom function key.

  • randomness: HexString

    Randomness used for signature blinding.

Generated using TypeDoc