quarry-mine 5.2.0

Distributes liquidity mining rewards to token stakers
Documentation
//! Contains addresses used for the Quarry program.
//! These addresses are updated via program upgrades.

use anchor_lang::prelude::*;

/// Wrapper module.
pub mod fee_to {
    use anchor_lang::declare_id;

    declare_id!("4MMZH3ih1aSty2nx4MC3kSR94Zb55XsXnqb5jfEcyHWQ");
}

/// Wrapper module.
pub mod fee_setter {
    use anchor_lang::declare_id;

    declare_id!("4MMZH3ih1aSty2nx4MC3kSR94Zb55XsXnqb5jfEcyHWQ");
}

/// Account authorized to take fees.
pub static FEE_TO: Pubkey = fee_to::ID;

/// Account authorized to set fees of a rewarder. Currently unused.
pub static FEE_SETTER: Pubkey = fee_setter::ID;