@kamino-finance/kamino-db
Version:
Kamino database models
14 lines (13 loc) • 379 B
TypeScript
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;
};