reserveSigningKey method

Future<XRPCResponse<ServerReserveSigningKeyOutput>> reserveSigningKey({
  1. String? did,
  2. String? $service,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

Reserve a repo signing key, for use with account creation. Necessary so that a DID PLC update operation can be constructed during an account migraiton. Public and does not require auth; implemented by PDS. NOTE: this endpoint may change when full account migration is implemented.

Implementation

Future<XRPCResponse<ServerReserveSigningKeyOutput>> reserveSigningKey({
  String? did,
  String? $service,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await comAtprotoServerReserveSigningKey(
  did: did,
  $ctx: ctx,
  $service: $service,
  $headers: $headers,
  $unknown: $unknown,
);