1 2 3 4 5 6 7 8 9 10 11
use crate::state::lb_pair::LbPair; use anchor_lang::prelude::*; #[derive(Accounts)] pub struct MigrateBinArray<'info> { pub lb_pair: AccountLoader<'info, LbPair>, } pub fn handle(ctx: Context<MigrateBinArray>) -> Result<()> { Ok(()) }