Skip to main content

Program

Struct Program 

Source
pub struct Program<'info, T = ()> { /* private fields */ }
Expand description

Type validating that the account is the given Program

The type has a programdata_address function that will return Option::Some if the program is owned by the BPFUpgradeableLoader which will contain the programdata_address property of the Program variant of the UpgradeableLoaderState enum.

§Table of Contents

§Basic Functionality

For Program<'info, T> where T implements Id: Checks:

  • account_info.key == expected_program
  • account_info.executable == true

§Generic Program Validation

For Program<'info> (without type parameter):

  • Only checks: account_info.executable == true
  • Use this when you only need to verify that an address is executable, without validating against a specific program ID.

§Example

#[program]
mod my_program {
    fn set_admin_settings(...){...}
}

#[account]
#[derive(Default)]
pub struct AdminSettings {
    ...
}

#[derive(Accounts)]
pub struct SetAdminSettings<'info> {
    #[account(mut, seeds = [b"admin"], bump)]
    pub admin_settings: Account<'info, AdminSettings>,
    #[account(constraint = program.programdata_address()? == Some(program_data.key()))]
    pub program: Program<'info, MyProgram>,
    #[account(constraint = program_data.upgrade_authority_address == Some(authority.key()))]
    pub program_data: Account<'info, ProgramData>,
    pub authority: Signer<'info>,
}

The given program has a function with which the upgrade authority can set admin settings.

The required constraints are as follows:

  • program is the account of the program itself. Its constraint checks that program_data is the account that contains the program’s upgrade authority. Implicitly, this checks that program is a BPFUpgradeable program (program.programdata_address()? will be None if it’s not).
  • program_data’s constraint checks that its upgrade authority is the authority account.
  • Finally, authority needs to sign the transaction.

§Generic Program Example

#[derive(Accounts)]
pub struct ValidateExecutableProgram<'info> {
    // Only validates that the provided account is executable
    pub any_program: Program<'info>,
    pub authority: Signer<'info>,
}

§Out of the Box Types

Between the anchor_lang and anchor_spl crates, the following Program types are provided out of the box:

Implementations§

Source§

impl<'a, T> Program<'a, T>

Methods from Deref<Target = AccountInfo<'info>>§

Source

pub fn signer_key(&self) -> Option<&Address>

Source

pub fn unsigned_key(&self) -> &Address

Source

pub fn lamports(&self) -> u64

Source

pub fn try_lamports(&self) -> Result<u64, ProgramError>

Source

pub unsafe fn original_data_len(&self) -> usize

Return the account’s original data length when it was serialized for the current program invocation.

§Safety

This method assumes that the original data length was serialized as a u32 integer in the 4 bytes immediately preceding the serialized account key.

Source

pub fn data_len(&self) -> usize

Source

pub fn try_data_len(&self) -> Result<usize, ProgramError>

Source

pub fn data_is_empty(&self) -> bool

Source

pub fn try_data_is_empty(&self) -> Result<bool, ProgramError>

Source

pub fn try_borrow_lamports(&self) -> Result<Ref<'_, &mut u64>, ProgramError>

Source

pub fn try_borrow_mut_lamports( &self, ) -> Result<RefMut<'_, &'a mut u64>, ProgramError>

Source

pub fn try_borrow_data(&self) -> Result<Ref<'_, &mut [u8]>, ProgramError>

Source

pub fn try_borrow_mut_data( &self, ) -> Result<RefMut<'_, &'a mut [u8]>, ProgramError>

Source

pub fn resize(&self, new_len: usize) -> Result<(), ProgramError>

Resize the account’s data: Either truncating or zero extending.

Note: Account data can be increased within a single call by up to solana_program::entrypoint::MAX_PERMITTED_DATA_INCREASE bytes.

§Safety

This method makes assumptions about the layout and location of memory referenced by AccountInfo fields. It should only be called for instances of AccountInfo that were created by the runtime and received in the process_instruction entrypoint of a program.

Source

pub fn assign(&self, new_owner: &Address)

Trait Implementations§

Source§

impl<'info, B, T: Id> Accounts<'info, B> for Program<'info, T>

Source§

fn try_accounts( _program_id: &Pubkey, accounts: &mut &'info [AccountInfo<'info>], _ix_data: &[u8], _bumps: &mut B, _reallocs: &mut BTreeSet<Pubkey>, ) -> Result<Self>

Returns the validated accounts struct. What constitutes “valid” is program dependent. However, users of these types should never have to worry about account substitution attacks. For example, if a program expects a Mint account from the SPL token program in a particular field, then it should be impossible for this method to return Ok if any other account type is given–from the SPL token program or elsewhere. Read more
Source§

impl<'info, T: AccountDeserialize> AccountsExit<'info> for Program<'info, T>

Source§

fn exit(&self, _program_id: &Pubkey) -> Result<()>

program_id is the currently executing program.
Source§

impl<'info, T> AsRef<AccountInfo<'info>> for Program<'info, T>

Source§

fn as_ref(&self) -> &AccountInfo<'info>

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl<'info, T: Clone> Clone for Program<'info, T>

Source§

fn clone(&self) -> Program<'info, T>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T: Debug> Debug for Program<'_, T>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'info, T> Deref for Program<'info, T>

Source§

type Target = AccountInfo<'info>

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.
Source§

impl<T: AccountDeserialize> Key for Program<'_, T>

Source§

fn key(&self) -> Pubkey

Source§

impl<'info, T> ToAccountInfos<'info> for Program<'info, T>

Source§

impl<T> ToAccountMetas for Program<'_, T>

Source§

fn to_account_metas(&self, is_signer: Option<bool>) -> Vec<AccountMeta>

is_signer is given as an optional override for the signer meta field. This covers the edge case when a program-derived-address needs to relay a transaction from a client to another program but sign the transaction before the relay. The client cannot mark the field as a signer, and so we have to override the is_signer meta field given by the client.
Source§

impl<'a, T: Id> TryFrom<&'a AccountInfo<'a>> for Program<'a, T>

Source§

fn try_from(info: &'a AccountInfo<'a>) -> Result<Self>

Deserializes the given info into a Program.

Source§

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations§

§

impl<'info, T> Freeze for Program<'info, T>

§

impl<'info, T = ()> !RefUnwindSafe for Program<'info, T>

§

impl<'info, T = ()> !Send for Program<'info, T>

§

impl<'info, T = ()> !Sync for Program<'info, T>

§

impl<'info, T> Unpin for Program<'info, T>
where T: Unpin,

§

impl<'info, T> UnsafeUnpin for Program<'info, T>

§

impl<'info, T = ()> !UnwindSafe for Program<'info, T>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<'info, T> Lamports<'info> for T
where T: AsRef<AccountInfo<'info>>,

Source§

fn get_lamports(&self) -> u64

Get the lamports of the account.
Source§

fn add_lamports(&self, amount: u64) -> Result<&Self>

Add lamports to the account. Read more
Source§

fn sub_lamports(&self, amount: u64) -> Result<&Self>

Subtract lamports from the account. Read more
Source§

impl<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<'info, T> ToAccountInfo<'info> for T
where T: AsRef<AccountInfo<'info>>,

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.