I am using Anchor for developing my Solana programs, and I'm wondering how should I make CPI calls that require previously created accounts, for instance, I wasn't able to find how to calculate rent-exemption amount. Should I init these accounts like this?
#[derive(Accounts)]
pub struct CreateNft<'info> {
#[account(init, payer = user, space = 967)]
pub candy_machine: AccountInfo<'info>,
#[account(mut)]
pub user: Signer<'info>,
pub system_program: Program<'info, System>,
}