1 2 3 4 5 6 7 8 9 10 11 12
use anchor_lang::prelude::*; pub const SEED_CONFIG: &[u8] = b"config"; #[account] #[derive(Debug)] pub struct Config { pub admin: Pubkey, pub program_fee: u64, pub worker_fee: u64, pub bump: u8, }