Struct switchboard_solana::oracle_program::instructions::vrf_lite_request_randomness::VrfLiteRequestRandomness
source · pub struct VrfLiteRequestRandomness<'info> {
pub authority: AccountInfo<'info>,
pub vrf_lite: AccountInfo<'info>,
pub queue: AccountInfo<'info>,
pub queue_authority: AccountInfo<'info>,
pub data_buffer: AccountInfo<'info>,
pub permission: AccountInfo<'info>,
pub escrow: Account<'info, TokenAccount>,
pub recent_blockhashes: AccountInfo<'info>,
pub program_state: AccountInfo<'info>,
pub token_program: AccountInfo<'info>,
}
Fields§
§vrf_lite: AccountInfo<'info>
§queue: AccountInfo<'info>
§data_buffer: AccountInfo<'info>
§permission: AccountInfo<'info>
CHECK:
escrow: Account<'info, TokenAccount>
§recent_blockhashes: AccountInfo<'info>
§program_state: AccountInfo<'info>
CHECK:
token_program: AccountInfo<'info>
Implementations§
source§impl<'info> VrfLiteRequestRandomness<'info>
impl<'info> VrfLiteRequestRandomness<'info>
pub fn get_instruction( &self, program_id: Pubkey, callback: Option<Callback> ) -> Result<Instruction>
pub fn invoke( &self, program: AccountInfo<'info>, callback: Option<Callback> ) -> ProgramResult
pub fn invoke_signed( &self, program: AccountInfo<'info>, callback: Option<Callback>, signer_seeds: &[&[&[u8]]] ) -> ProgramResult
Trait Implementations§
source§impl<'info> Accounts<'info, VrfLiteRequestRandomnessBumps> for VrfLiteRequestRandomness<'info>where
'info: 'info,
impl<'info> Accounts<'info, VrfLiteRequestRandomnessBumps> for VrfLiteRequestRandomness<'info>where
'info: 'info,
source§fn try_accounts(
__program_id: &Pubkey,
__accounts: &mut &'info [AccountInfo<'info>],
__ix_data: &[u8],
__bumps: &mut VrfLiteRequestRandomnessBumps,
__reallocs: &mut BTreeSet<Pubkey>
) -> Result<Self>
fn try_accounts( __program_id: &Pubkey, __accounts: &mut &'info [AccountInfo<'info>], __ix_data: &[u8], __bumps: &mut VrfLiteRequestRandomnessBumps, __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 moresource§impl<'info> AccountsExit<'info> for VrfLiteRequestRandomness<'info>where
'info: 'info,
impl<'info> AccountsExit<'info> for VrfLiteRequestRandomness<'info>where
'info: 'info,
source§impl<'info> Bumps for VrfLiteRequestRandomness<'info>where
'info: 'info,
impl<'info> Bumps for VrfLiteRequestRandomness<'info>where
'info: 'info,
§type Bumps = VrfLiteRequestRandomnessBumps
type Bumps = VrfLiteRequestRandomnessBumps
Struct to hold account bump seeds.
source§impl Discriminator for VrfLiteRequestRandomness<'_>
impl Discriminator for VrfLiteRequestRandomness<'_>
const DISCRIMINATOR: [u8; 8] = _
fn discriminator() -> [u8; 8]
source§impl<'info> ToAccountInfos<'info> for VrfLiteRequestRandomness<'info>where
'info: 'info,
impl<'info> ToAccountInfos<'info> for VrfLiteRequestRandomness<'info>where
'info: 'info,
fn to_account_infos(&self) -> Vec<AccountInfo<'info>>
source§impl<'info> ToAccountMetas for VrfLiteRequestRandomness<'info>
impl<'info> ToAccountMetas for VrfLiteRequestRandomness<'info>
source§fn to_account_metas(&self, is_signer: Option<bool>) -> Vec<AccountMeta>
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.Auto Trait Implementations§
impl<'info> !RefUnwindSafe for VrfLiteRequestRandomness<'info>
impl<'info> !Send for VrfLiteRequestRandomness<'info>
impl<'info> !Sync for VrfLiteRequestRandomness<'info>
impl<'info> Unpin for VrfLiteRequestRandomness<'info>
impl<'info> !UnwindSafe for VrfLiteRequestRandomness<'info>
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more