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