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;
};
