export interface IValueItem { timestamp: number; value: number; } export interface IDashboardNetWorth { oneWeek: IValueItem[]; oneMonth: IValueItem[]; total: IValueItem[]; } export interface ICoinPrice { symbol: string; price: string; } export interface IGetDashboardResp { coinPriceList: ICoinPrice[]; netWorth: IDashboardNetWorth; } export interface IGetDashboardReq { msafeAddress: string; }