UNPKG

@kamino-finance/kamino-db

Version:
16 lines (13 loc) 367 B
export interface KVaultAllocationStateEntity { id: bigint; created_on: Date; kvault_id: bigint; klend_reserve_id: number; allocation_ratio: string; } export type KVaultAllocationStateHourEntity = KVaultAllocationStateEntity & { resampled_on: Date; }; export type KVaultAllocationStateDayEntity = KVaultAllocationStateEntity & { resampled_on: Date; };