@kamino-finance/kamino-db
Version:
Kamino database models
16 lines (14 loc) • 519 B
text/typescript
export interface KVaultHolderTotalEntity {
id: bigint;
created_on: Date;
owner_id: number;
usd_amount: string;
sol_amount: string;
weighted_apy: string;
cumulative_interest_earned_usd: string;
cumulative_interest_earned_sol: string;
interest_earned_per_second_usd: string;
interest_earned_per_second_sol: string;
}
export type KVaultHolderTotalHourEntity = KVaultHolderTotalEntity & { resampled_on: Date };
export type KVaultHolderTotalDayEntity = KVaultHolderTotalEntity & { resampled_on: Date };