ore_pool_api/
consts.rs

1use solana_program::{pubkey, pubkey::Pubkey};
2
3/// The seed of the member account PDA.
4pub const MEMBER: &[u8] = b"member";
5
6/// The seed of the pool account PDA.
7pub const POOL: &[u8] = b"pool";
8
9/// The seed of the share account PDA.
10pub const SHARE: &[u8] = b"share";
11
12/// The seed of the migration account PDA.
13pub const MIGRATION: &[u8] = b"migration";
14
15/// The authority allowed to run migrations.
16pub const ADMIN_ADDRESS: Pubkey = pubkey!("HBUh9g46wk2X89CvaNN15UmsznP59rh6od1h8JwYAopk");
17
18/// The legacy boost program ID.
19pub const LEGACY_BOOST_PROGRAM_ID: Pubkey = pubkey!("boostmPwypNUQu8qZ8RoWt5DXyYSVYxnBXqbbrGjecc");