1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
//! The `loader_transaction` module provides functionality for loading and calling a program

use crate::hash::Hash;
use crate::loader_instruction::LoaderInstruction;
use crate::pubkey::Pubkey;
use crate::signature::Keypair;
use crate::transaction::Transaction;

pub struct LoaderTransaction {}

impl LoaderTransaction {
    pub fn new_write(
        from_keypair: &Keypair,
        loader: &Pubkey,
        offset: u32,
        bytes: Vec<u8>,
        recent_blockhash: Hash,
        fee: u64,
    ) -> Transaction {
        let instruction = LoaderInstruction::Write { offset, bytes };
        Transaction::new(
            from_keypair,
            &[],
            loader,
            &instruction,
            recent_blockhash,
            fee,
        )
    }

    pub fn new_finalize(
        from_keypair: &Keypair,
        loader: &Pubkey,
        recent_blockhash: Hash,
        fee: u64,
    ) -> Transaction {
        let instruction = LoaderInstruction::Finalize;
        Transaction::new(
            from_keypair,
            &[],
            loader,
            &instruction,
            recent_blockhash,
            fee,
        )
    }
}