UNPKG

@kamino-finance/kamino-db

Version:
10 lines (9 loc) 305 B
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;