@kamino-finance/kamino-db
Version:
Kamino database models
19 lines (18 loc) • 552 B
TypeScript
export interface KdexInstructionEntity {
id: number;
raw_instruction_id: bigint;
kdex_pool_id: number;
owner_id: number;
source_mint_id: number | null;
destination_mint_id: number | null;
token_in_amount: string | null;
token_out_amount: string | null;
trade_fee: string | null;
owner_fee: string | null;
total_fees: string | null;
token_a_amount: string | null;
token_b_amount: string | null;
pool_token_amount: string | null;
token_a_fees: string | null;
token_b_fees: string | null;
}