Type Alias: CreateAccountOutput
type CreateAccountOutput =
| CreateAccountSuccess
| CreateAccountError;Defined in: apps/submitter/lib/handlers/createAccount/types.ts:44
Output of a createAccount call (account/create route): either an
account successfully created (or previously created) CreateAccountSuccess,
or an error CreateAccountError.
