use anchor_lang::prelude::*;
#[account]
pub struct Community {
pub authority: Pubkey,
pub cases: u64,
pub confirmation_threshold: u8,
pub stake_unlock_epochs: u64,
pub stake_mint: Pubkey,
pub token_signer: Pubkey,
pub token_signer_bump: u8,
pub token_account: Pubkey,
pub treasury_token_account: Pubkey,
pub validator_stake: u64,
pub tracer_stake: u64,
pub full_stake: u64,
pub authority_stake: u64,
pub appraiser_stake: u64,
}