authenticateInit method

Implementation

Future<AuthenticateInitResponse> authenticateInit(
    AuthenticateInitRequest request) async {
  ///  Sign-in to an already existing wallet, using an identity added that was previously registered
  /// This endpoint does not require authentication, and will return a challenge to be signed or verified

  return client.authenticateInit(request,
      options: await buildMetadata(request: request));
}