export type LutProductType = 'swap_pair' | 'vault' | 'strategy' | 'market' | 'meta_vault' | 'shared';

export type LutProductEntity = {
  id: bigint;
  created_on: Date;
  updated_on: Date;
  product_identifier_address: string;
  product_type: LutProductType;
};
export default LutProductEntity;
