37 lines
974 B
Rust
37 lines
974 B
Rust
//! @brief Example Rust-based BPF program that issues a cross-program-invocation
|
|
|
|
use solana_sdk::{
|
|
instruction::{AccountMeta, Instruction},
|
|
pubkey::Pubkey,
|
|
};
|
|
|
|
pub const TEST_VERIFY_TRANSLATIONS: u8 = 0;
|
|
pub const TEST_RETURN_ERROR: u8 = 1;
|
|
pub const TEST_DERIVED_SIGNERS: u8 = 2;
|
|
pub const TEST_VERIFY_NESTED_SIGNERS: u8 = 3;
|
|
pub const TEST_VERIFY_WRITER: u8 = 4;
|
|
pub const TEST_VERIFY_PRIVILEGE_ESCALATION: u8 = 5;
|
|
pub const TEST_NESTED_INVOKE: u8 = 6;
|
|
|
|
pub fn create_instruction(
|
|
program_id: Pubkey,
|
|
arguments: &[(&Pubkey, bool, bool)],
|
|
data: Vec<u8>,
|
|
) -> Instruction {
|
|
let accounts = arguments
|
|
.iter()
|
|
.map(|(key, is_writable, is_signer)| {
|
|
if *is_writable {
|
|
AccountMeta::new(**key, *is_signer)
|
|
} else {
|
|
AccountMeta::new_readonly(**key, *is_signer)
|
|
}
|
|
})
|
|
.collect();
|
|
Instruction {
|
|
program_id,
|
|
accounts,
|
|
data,
|
|
}
|
|
}
|