export interface PublicTrade {
  id: number;
  price: string;
  qty: string;
  side: string;
  timestamp: string;
}
