ore-pool-api 1.6.1

API for interacting with the ORE mining pool program
Documentation
use solana_program::{pubkey, pubkey::Pubkey};

/// The seed of the member account PDA.
pub const MEMBER: &[u8] = b"member";

/// The seed of the pool account PDA.
pub const POOL: &[u8] = b"pool";

/// The seed of the share account PDA.
pub const SHARE: &[u8] = b"share";

/// The seed of the migration account PDA.
pub const MIGRATION: &[u8] = b"migration";

/// The authority allowed to run migrations.
pub const ADMIN_ADDRESS: Pubkey = pubkey!("HBUh9g46wk2X89CvaNN15UmsznP59rh6od1h8JwYAopk");

/// The legacy boost program ID.
pub const LEGACY_BOOST_PROGRAM_ID: Pubkey = pubkey!("boostmPwypNUQu8qZ8RoWt5DXyYSVYxnBXqbbrGjecc");