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
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 tx_body_file<P: AsRef<Path>>(mut self, tx_body_file: P) -> Self {
        self.command
            .arg("--tx-body-file")
            .arg(tx_body_file.as_ref());
        self
    }

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

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

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

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