solana/sdk/src/system_instruction.rs

125 lines
3.6 KiB
Rust
Raw Normal View History

2019-03-23 20:12:27 -07:00
use crate::instruction::{AccountMeta, Instruction};
2019-04-25 10:29:44 -07:00
use crate::instruction_processor_utils::DecodeError;
2018-12-14 20:39:10 -08:00
use crate::pubkey::Pubkey;
2019-02-28 03:48:44 -08:00
use crate::system_program;
use num_derive::{FromPrimitive, ToPrimitive};
2018-11-16 08:04:46 -08:00
#[derive(Serialize, Debug, Clone, PartialEq, FromPrimitive, ToPrimitive)]
2019-03-13 13:37:24 -07:00
pub enum SystemError {
AccountAlreadyInUse,
ResultWithNegativeLamports,
InvalidProgramId,
InvalidAccountId,
InvalidAccountDataLength,
2019-03-13 13:37:24 -07:00
}
2019-04-25 10:29:44 -07:00
impl<T> DecodeError<T> for SystemError {
fn type_of() -> &'static str {
2019-04-25 10:29:44 -07:00
"SystemError"
}
}
impl std::fmt::Display for SystemError {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
write!(f, "error")
}
}
impl std::error::Error for SystemError {}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
2018-11-16 08:04:46 -08:00
pub enum SystemInstruction {
/// Create a new account
/// * Transaction::keys[0] - source
/// * Transaction::keys[1] - new account key
2019-03-05 16:28:14 -08:00
/// * lamports - number of lamports to transfer to the new account
2018-11-16 08:04:46 -08:00
/// * space - memory to allocate if greater then zero
/// * program_id - the program id of the new account
CreateAccount {
2019-03-05 16:28:14 -08:00
lamports: u64,
2018-11-16 08:04:46 -08:00
space: u64,
program_id: Pubkey,
},
/// Assign account to a program
/// * Transaction::keys[0] - account to assign
Assign { program_id: Pubkey },
/// Transfer lamports
2018-11-16 08:04:46 -08:00
/// * Transaction::keys[0] - source
/// * Transaction::keys[1] - destination
Transfer { lamports: u64 },
2018-11-16 08:04:46 -08:00
}
2019-02-28 03:48:44 -08:00
pub fn create_account(
from_pubkey: &Pubkey,
to_pubkey: &Pubkey,
lamports: u64,
space: u64,
program_id: &Pubkey,
) -> Instruction {
let account_metas = vec![
AccountMeta::new(*from_pubkey, true),
AccountMeta::new(*to_pubkey, true),
];
Instruction::new(
system_program::id(),
&SystemInstruction::CreateAccount {
lamports,
space,
program_id: *program_id,
},
account_metas,
)
}
2019-03-03 14:43:51 -08:00
pub fn assign(from_pubkey: &Pubkey, program_id: &Pubkey) -> Instruction {
let account_metas = vec![AccountMeta::new(*from_pubkey, true)];
Instruction::new(
system_program::id(),
&SystemInstruction::Assign {
program_id: *program_id,
},
account_metas,
)
}
2019-03-21 09:03:50 -07:00
pub fn transfer(from_pubkey: &Pubkey, to_pubkey: &Pubkey, lamports: u64) -> Instruction {
let account_metas = vec![
AccountMeta::new(*from_pubkey, true),
AccountMeta::new(*to_pubkey, false),
];
Instruction::new(
system_program::id(),
&SystemInstruction::Transfer { lamports },
account_metas,
)
}
/// Create and sign new SystemInstruction::Transfer transaction to many destinations
pub fn transfer_many(from_pubkey: &Pubkey, to_lamports: &[(Pubkey, u64)]) -> Vec<Instruction> {
to_lamports
.iter()
.map(|(to_pubkey, lamports)| transfer(from_pubkey, to_pubkey, *lamports))
.collect()
}
#[cfg(test)]
mod tests {
use super::*;
fn get_keys(instruction: &Instruction) -> Vec<Pubkey> {
instruction.accounts.iter().map(|x| x.pubkey).collect()
}
#[test]
fn test_move_many() {
let alice_pubkey = Pubkey::new_rand();
let bob_pubkey = Pubkey::new_rand();
let carol_pubkey = Pubkey::new_rand();
let to_lamports = vec![(bob_pubkey, 1), (carol_pubkey, 2)];
let instructions = transfer_many(&alice_pubkey, &to_lamports);
assert_eq!(instructions.len(), 2);
assert_eq!(get_keys(&instructions[0]), vec![alice_pubkey, bob_pubkey]);
assert_eq!(get_keys(&instructions[1]), vec![alice_pubkey, carol_pubkey]);
}
2019-02-28 03:48:44 -08:00
}