Providers Package
Provider API Reference
Types
Account Types

Account

PublicAccount

This type represents a public account returned by the useAccounts hook.

export type PublicAccount = {
  id: AccountId;
  status: ConnectionStatus;
  accountName: string;
  exchangeId: string;
  permissions: ApiPermissions[];
  settings?: AccountSettings;
  isOauth?: boolean;
  isFastApi?: boolean;
};