ore_relayer_api/
consts.rs

1use solana_program::{pubkey, pubkey::Pubkey};
2
3/// Miner pubkey
4pub const MINER_PUBKEY: Pubkey = pubkey!("F7coAFJKxeo1btofymv6f6KFmN5LUC9JEGRATRqwQCXL");
5
6/// The seed of the escrow account PDA.
7pub const ESCROW: &[u8] = b"escrow";
8
9/// The ore commission the relayer is allowed to collect
10pub const COMMISSION: u64 = 10_000;