pub trait BudgetTransaction {
    fn budget_new_taxed(
        from_keypair: &Keypair,
        to: Pubkey,
        tokens: u64,
        fee: u64,
        last_id: Hash
    ) -> Self; fn budget_new(
        from_keypair: &Keypair,
        to: Pubkey,
        tokens: u64,
        last_id: Hash
    ) -> Self; fn budget_new_timestamp(
        from_keypair: &Keypair,
        contract: Pubkey,
        to: Pubkey,
        dt: DateTime<Utc>,
        last_id: Hash
    ) -> Self; fn budget_new_signature(
        from_keypair: &Keypair,
        contract: Pubkey,
        to: Pubkey,
        last_id: Hash
    ) -> Self; fn budget_new_on_date(
        from_keypair: &Keypair,
        to: Pubkey,
        contract: Pubkey,
        dt: DateTime<Utc>,
        dt_pubkey: Pubkey,
        cancelable: Option<Pubkey>,
        tokens: u64,
        last_id: Hash
    ) -> Self; fn budget_new_when_signed(
        from_keypair: &Keypair,
        to: Pubkey,
        contract: Pubkey,
        witness: Pubkey,
        cancelable: Option<Pubkey>,
        tokens: u64,
        last_id: Hash
    ) -> Self; fn instruction(&self, program_index: usize) -> Option<Instruction>; fn system_instruction(
        &self,
        program_index: usize
    ) -> Option<SystemInstruction>; fn verify_plan(&self) -> bool; }

Required Methods

Implementors