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