12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #![allow(clippy::result_large_err)]
- use anchor_lang::prelude::*;
- use anchor_lang::system_program;
- declare_id!("ED6f4gweAE7hWPQPXMt4kWxzDJne8VQEm9zkb1tMpFNB");
- #[program]
- pub mod rent_example {
- use super::*;
- pub fn create_system_account(
- ctx: Context<CreateSystemAccount>,
- address_data: AddressData,
- ) -> Result<()> {
- msg!("Program invoked. Creating a system account...");
- msg!(
- " New public key will be: {}",
- &ctx.accounts.new_account.key().to_string()
- );
- // Determine the necessary minimum rent by calculating the account's size
- //
- let account_span = (address_data.try_to_vec()?).len();
- let lamports_required = (Rent::get()?).minimum_balance(account_span);
- msg!("Account span: {}", &account_span);
- msg!("Lamports required: {}", &lamports_required);
- system_program::create_account(
- CpiContext::new(
- ctx.accounts.system_program.to_account_info(),
- system_program::CreateAccount {
- from: ctx.accounts.payer.to_account_info(),
- to: ctx.accounts.new_account.to_account_info(),
- },
- ),
- lamports_required,
- account_span as u64,
- &ctx.accounts.system_program.key(),
- )?;
- msg!("Account created succesfully.");
- Ok(())
- }
- }
- #[derive(Accounts)]
- pub struct CreateSystemAccount<'info> {
- #[account(mut)]
- pub payer: Signer<'info>,
- #[account(mut)]
- pub new_account: Signer<'info>,
- pub system_program: Program<'info, System>,
- }
- #[derive(AnchorSerialize, AnchorDeserialize, Debug)]
- pub struct AddressData {
- name: String,
- address: String,
- }
|