Type Alias: CreateAccountError
type CreateAccountError = Prettify<CreateAccountInput & {
address?: undefined;
description: string;
status: Exclude<CreateAccountStatus,
| typeof Success
| typeof AlreadyCreated>;
}>;
Defined in: apps/submitter/lib/handlers/createAccount/types.ts:59
Failed account creation.