crema-cli 0.1.0

Blockchain, Crema for Solana
Documentation
use borsh::{BorshDeserialize, BorshSerialize};
use solana_program::instruction::{AccountMeta, Instruction};
use solana_program::pubkey::Pubkey;

use crate::program::FARMING_MINT_WRAPPER_PROGRAM_ID;
use crate::utils::sighash;

#[derive(BorshSerialize, BorshDeserialize, PartialEq, Debug, Clone)]
pub struct SetFamine {
    pub famine_ts: u64,
}

pub fn new_set_famine(
    rewarder: Pubkey,
    rewarder_wallet: Pubkey,
    quarry: Pubkey,
    famine_ts: u64,
) -> Instruction {
    let data = &SetFamine {
        famine_ts
    };
    let mut dsa = data.try_to_vec().unwrap();
    let mut distor = sighash::sighash("global", "set_famine").to_vec();
    distor.append(&mut dsa);

    Instruction {
        program_id: FARMING_MINT_WRAPPER_PROGRAM_ID,
        accounts: vec![
            AccountMeta::new_readonly(rewarder_wallet, true),
            AccountMeta::new_readonly(rewarder, false),
            AccountMeta::new(quarry, false),
        ],
        data: distor,
    }
}