Skip to content

Type Alias: CreateAccountSuccess

type CreateAccountSuccess = CreateAccountInput & {
  address: Address;
  status:   | typeof Success
     | typeof AlreadyCreated;
};

Defined in: apps/submitter/lib/handlers/createAccount/types.ts:34

Successful account creation (or creation previously successful).

Type declaration

address

address: Address;

The address of the account.

status

status: 
  | typeof Success
  | typeof AlreadyCreated;