pub trait DaemonAccount {
    fn init(&mut self, owner: Pubkey, bump: u8) -> ProgramResult;
fn invoke(
        &mut self,
        ix: &Instruction,
        account_infos: &[AccountInfo<'_>]
    ) -> ProgramResult;
fn widthdraw(&mut self, amount: u64, owner: &Signer<'_>) -> ProgramResult; }
Expand description

DaemonAccount

Required methods

Implementations on Foreign Types

Implementors