@kamino-finance/kamino-db
Version:
Kamino database models
15 lines (13 loc) • 365 B
text/typescript
export interface FarmManagementInstructionEntity {
id: bigint;
raw_instruction_id: bigint;
farm_id: number;
signer_id: number;
token_mint_id: number | null;
token_amount: string | null;
usd_amount: string | null;
reward_index: number | null;
config_mode: number | null;
details: object | null;
}
export default FarmManagementInstructionEntity;