1 2 3 4 5 6 7 8 9 10 11
use solana_sdk::pubkey::Pubkey; pub mod instructions; pub mod states; pub const PROGRAM_ID: Pubkey = Pubkey::from_str_const("tdpUmm2N1bhmSfYAynVuWWFWSd5aF5LmiBTPXJEwoW6"); pub mod seeds { pub const PLAYER_SEED: &'static [u8] = b"player"; }