1 2 3 4 5 6 7 8 9 10 11
use anchor_lang::prelude::*; pub const SEED_DAEMON: &[u8] = b"daemon"; #[account] #[derive(Debug)] pub struct Daemon { pub owner: Pubkey, pub task_count: u128, pub bump: u8, }