App
export type App = {
appId: string;
appName: string;
appImage: string;
appBanner: string;
teamId: string;
status: AppStatus;
createdAt: number;
updatedAt: number;
slots: string[];
appWallets: UserAlias[];
appCurrencies: Currency[];
autoGrantRead?: boolean;
description?: string;
url?: string;
handcashAppId?: string;
marketCurrencies?: string[];
};
export type AppStatus = 'active' | 'inactive';
Last updated