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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
use crate::cardano_cli::wrapper::utils::CommandExt;
use snapshot_trigger_service::config::NetworkType;
use std::path::Path;
use std::process::Command;
use tracing::debug;

pub struct Builder {
    command: Command,
}

impl Builder {
    pub fn new(command: Command) -> Self {
        Self { command }
    }

    pub fn network(mut self, network: NetworkType) -> Self {
        self.command.arg_network(network);
        self
    }

    pub fn tx_in(mut self, tx_in: String) -> Self {
        self.command.arg("--tx-in").arg(tx_in);
        self
    }

    pub fn change_address(mut self, change_address: String) -> Self {
        self.command.arg("--change-address").arg(change_address);
        self
    }

    pub fn certificate_file<P: AsRef<Path>>(mut self, certificate_file: P) -> Self {
        self.command
            .arg("--certificate-file")
            .arg(certificate_file.as_ref());
        self
    }

    pub fn protocol_params_file<P: AsRef<Path>>(mut self, protocol_params_file: P) -> Self {
        self.command
            .arg("--protocol-params-file")
            .arg(protocol_params_file.as_ref());
        self
    }

    pub fn out_file<P: AsRef<Path>>(mut self, out_file: P) -> Self {
        self.command.arg("--out-file").arg(out_file.as_ref());
        self
    }

    pub fn witness_override(mut self, witness_override: u32) -> Self {
        self.command
            .arg("--witness-override")
            .arg(witness_override.to_string());
        self
    }

    pub fn build(self) -> Command {
        debug!("Cardano Cli - transaction build: {:?}", self.command);
        self.command
    }
}