@kamino-finance/kamino-db
Version:
Kamino database models
19 lines (18 loc) • 548 B
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;
};