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 SetRewardsShare {
pub new_share: u64,
}
pub fn new_set_rewards_share(
rewarder: Pubkey,
quarry: Pubkey,
payer: Pubkey,
new_share: u64,
) -> Instruction {
let data = &SetRewardsShare {
new_share
};
let mut dsa = data.try_to_vec().unwrap();
let mut distor = sighash::sighash("global", "set_rewards_share").to_vec();
distor.append(&mut dsa);
Instruction {
program_id: FARMING_MINT_WRAPPER_PROGRAM_ID,
accounts: vec![
AccountMeta::new_readonly(payer, true),
AccountMeta::new(rewarder, false),
AccountMeta::new(quarry, false),
],
data: distor,
}
}