... = vault.reward_sui_blance.value();
// Calculate the donation amount (20% of total reward)
let donation_amount = total_reward * 20 / 100;
// Calculate the remaining amount for distribution (80% of total reward)
let distribution_amount = total_reward - donation_amount;
//...