xmr-btc-swap/swap/src/cli/command.rs

87 lines
2.6 KiB
Rust
Raw Normal View History

use libp2p::{core::Multiaddr, PeerId};
use std::path::PathBuf;
2020-11-05 19:10:22 -05:00
use uuid::Uuid;
const DEFAULT_ALICE_MULTIADDR: &str = "/dns4/xmr-btc-asb.coblox.tech/tcp/9876";
const DEFAULT_ALICE_PEER_ID: &str = "12D3KooWCdMKjesXMJz1SiZ7HgotrxuqhQJbP5sgBm2BwP1cqThi";
#[derive(structopt::StructOpt, Debug)]
pub struct Arguments {
#[structopt(
long = "config",
help = "Provide a custom path to the configuration file. The configuration file must be a toml file.",
parse(from_os_str)
)]
pub config: Option<PathBuf>,
#[structopt(subcommand)]
pub cmd: Command,
}
#[derive(structopt::StructOpt, Debug)]
#[structopt(name = "xmr_btc-swap", about = "XMR BTC atomic swap")]
pub enum Command {
2020-12-04 00:27:17 -05:00
BuyXmr {
#[structopt(long = "connect-peer-id", default_value = DEFAULT_ALICE_PEER_ID)]
alice_peer_id: PeerId,
#[structopt(
long = "connect-addr",
default_value = DEFAULT_ALICE_MULTIADDR
)]
alice_addr: Multiaddr,
},
2020-11-05 00:55:30 -05:00
History,
Resume {
#[structopt(long = "swap-id")]
swap_id: Uuid,
// TODO: Remove Alice peer-id/address, it should be saved in the database when running swap
// and loaded from the database when running resume/cancel/refund
#[structopt(long = "counterpart-peer-id", default_value = DEFAULT_ALICE_PEER_ID)]
alice_peer_id: PeerId,
#[structopt(
long = "counterpart-addr",
default_value = DEFAULT_ALICE_MULTIADDR
)]
alice_addr: Multiaddr,
2020-11-05 19:10:22 -05:00
},
Cancel {
2021-02-01 00:10:43 -05:00
#[structopt(long = "swap-id")]
2021-02-01 00:25:33 -05:00
swap_id: Uuid,
// TODO: Remove Alice peer-id/address, it should be saved in the database when running swap
// and loaded from the database when running resume/cancel/refund
#[structopt(long = "counterpart-peer-id", default_value = DEFAULT_ALICE_PEER_ID)]
2021-02-01 00:25:33 -05:00
alice_peer_id: PeerId,
#[structopt(
long = "counterpart-addr",
default_value = DEFAULT_ALICE_MULTIADDR
)]
2021-02-01 00:25:33 -05:00
alice_addr: Multiaddr,
2021-02-01 06:32:54 -05:00
#[structopt(short, long)]
force: bool,
2021-02-01 00:25:33 -05:00
},
Refund {
2021-02-01 00:25:33 -05:00
#[structopt(long = "swap-id")]
2021-02-01 00:10:43 -05:00
swap_id: Uuid,
// TODO: Remove Alice peer-id/address, it should be saved in the database when running swap
// and loaded from the database when running resume/cancel/refund
#[structopt(long = "counterpart-peer-id", default_value = DEFAULT_ALICE_PEER_ID)]
2021-02-01 00:10:43 -05:00
alice_peer_id: PeerId,
#[structopt(
long = "counterpart-addr",
default_value = DEFAULT_ALICE_MULTIADDR
)]
2021-02-01 00:10:43 -05:00
alice_addr: Multiaddr,
2021-02-01 06:32:54 -05:00
#[structopt(short, long)]
force: bool,
2021-02-01 00:10:43 -05:00
},
}