luts 0.1.1

Address Lookup Table wrapper with deduplication and readiness tracking
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use anchor_lang::prelude::*;
use anchor_lang::Id;
pub use solana_sdk_ids::address_lookup_table::ID as LOOKUP_TABLE_PROGRAM;

#[derive(Clone)]
pub struct LutProgram;

impl Id for LutProgram {
    fn id() -> Pubkey {
        LOOKUP_TABLE_PROGRAM
    }
}