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