soroban_cli/commands/tx/new/
mod.rs

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
62
63
64
65
66
67
68
69
use clap::Parser;

use super::global;

mod account_merge;
mod bump_sequence;
mod change_trust;
mod create_account;
mod manage_data;
mod payment;
mod set_options;
mod set_trustline_flags;

#[derive(Debug, Parser)]
#[allow(clippy::doc_markdown)]
pub enum Cmd {
    /// Transfers the XLM balance of an account to another account and removes the source account from the ledger
    AccountMerge(account_merge::Cmd),
    /// Bumps forward the sequence number of the source account to the given sequence number, invalidating any transaction with a smaller sequence number
    BumpSequence(bump_sequence::Cmd),
    /// Creates, updates, or deletes a trustline
    /// Learn more about trustlines
    /// https://developers.stellar.org/docs/learn/fundamentals/stellar-data-structures/accounts#trustlines
    ChangeTrust(change_trust::Cmd),
    /// Creates and funds a new account with the specified starting balance
    CreateAccount(create_account::Cmd),
    /// Sets, modifies, or deletes a data entry (name/value pair) that is attached to an account
    /// Learn more about entries and subentries:
    /// https://developers.stellar.org/docs/learn/fundamentals/stellar-data-structures/accounts#subentries
    ManageData(manage_data::Cmd),
    /// Sends an amount in a specific asset to a destination account
    Payment(payment::Cmd),
    /// Set option for an account such as flags, inflation destination, signers, home domain, and master key weight
    /// Learn more about flags:
    /// https://developers.stellar.org/docs/learn/glossary#flags
    /// Learn more about the home domain:
    /// https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0001.md
    /// Learn more about signers operations and key weight:
    /// https://developers.stellar.org/docs/learn/encyclopedia/security/signatures-multisig#multisig
    SetOptions(set_options::Cmd),
    /// Allows issuing account to configure authorization and trustline flags to an asset
    /// The Asset parameter is of the `TrustLineAsset` type. If you are modifying a trustline to a regular asset (i.e. one in a Code:Issuer format), this is equivalent to the Asset type.
    /// If you are modifying a trustline to a pool share, however, this is composed of the liquidity pool's unique ID.
    /// Learn more about flags:
    /// https://developers.stellar.org/docs/learn/glossary#flags
    SetTrustlineFlags(set_trustline_flags::Cmd),
}

#[derive(thiserror::Error, Debug)]
pub enum Error {
    #[error(transparent)]
    Tx(#[from] super::args::Error),
}

impl Cmd {
    pub async fn run(&self, global_args: &global::Args) -> Result<(), Error> {
        match self {
            Cmd::AccountMerge(cmd) => cmd.tx.handle_and_print(cmd, global_args).await,
            Cmd::BumpSequence(cmd) => cmd.tx.handle_and_print(cmd, global_args).await,
            Cmd::ChangeTrust(cmd) => cmd.tx.handle_and_print(cmd, global_args).await,
            Cmd::CreateAccount(cmd) => cmd.tx.handle_and_print(cmd, global_args).await,
            Cmd::ManageData(cmd) => cmd.tx.handle_and_print(cmd, global_args).await,
            Cmd::Payment(cmd) => cmd.tx.handle_and_print(cmd, global_args).await,
            Cmd::SetOptions(cmd) => cmd.tx.handle_and_print(cmd, global_args).await,
            Cmd::SetTrustlineFlags(cmd) => cmd.tx.handle_and_print(cmd, global_args).await,
        }?;
        Ok(())
    }
}