import { IAddress } from '../../types'; export type IOctavfiEndpoint = 'portfolio'; export interface IOctavfiAsset { balance: string; symbol: string; price: string; value: string; contractAddress?: IAddress; chain: string; } export interface IOctavfiProtocolBreakdown { key: string; name: string; value: string; assets: IOctavfiAsset[]; } export interface IOctavfiChainBreakdown { key: string; name: string; value: string; protocols: string[]; } export interface IOctavfiPortfolio { address: IAddress; cashBalance: string; dailyIncome: string; dailyExpense: string; fees: string; feesFiat: string; lastUpdated: string; networth: string; assetByProtocols: Record; chains: Record; }