1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//! 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;