wallet/createAccount
Creates a new account in the wallet with the given name and optionally sets it as the default account.
Request
{
  name: string
  default?: boolean
}
Response
{
  name: string;
  publicAddress: string;
  isDefaultAccount: boolean;
}