pub trait RouterActionProcessor<'info, T: Accounts<'info>> {
    fn process_action(
        ctx: Context<'_, '_, '_, '_, T>,
        action: u16,
        amount_in: u64,
        minimum_amount_out: u64
    ) -> ProgramResult; }
Expand description

Interface for programs that can be routed through.

Required methods

Implementors