use crate::{bitcoin, monero}; use libp2p::{core::Multiaddr, PeerId}; use std::path::PathBuf; use uuid::Uuid; #[derive(structopt::StructOpt, Debug)] pub struct Options { #[structopt( long = "data-dir", help = "Provide a custom path to the data directory.", parse(from_os_str) )] pub data_dir: Option, #[structopt(subcommand)] pub cmd: Command, } #[derive(structopt::StructOpt, Debug)] #[structopt(name = "xmr_btc-swap", about = "XMR BTC atomic swap")] pub enum Command { SellXmr { #[structopt(long = "p2p-address", default_value = "/ip4/0.0.0.0/tcp/9876")] listen_addr: Multiaddr, #[structopt(long = "send-xmr", help = "Monero amount as floating point nr without denomination (e.g. 125.1)", parse(try_from_str = parse_xmr))] send_monero: monero::Amount, #[structopt(long = "receive-btc", help = "Bitcoin amount as floating point nr without denomination (e.g. 1.25)", parse(try_from_str = parse_btc))] receive_bitcoin: bitcoin::Amount, #[structopt(flatten)] config: Config, }, BuyXmr { #[structopt(long = "connect-peer-id")] alice_peer_id: PeerId, #[structopt(long = "connect-addr")] alice_addr: Multiaddr, #[structopt(long = "send-btc", help = "Bitcoin amount as floating point nr without denomination (e.g. 1.25)", parse(try_from_str = parse_btc))] send_bitcoin: bitcoin::Amount, #[structopt(long = "receive-xmr", help = "Monero amount as floating point nr without denomination (e.g. 125.1)", parse(try_from_str = parse_xmr))] receive_monero: monero::Amount, #[structopt(flatten)] config: Config, }, History, Resume(Resume), } #[derive(structopt::StructOpt, Debug)] pub enum Resume { SellXmr { #[structopt(long = "swap-id")] swap_id: Uuid, #[structopt(long = "listen-address", default_value = "/ip4/127.0.0.1/tcp/9876")] listen_addr: Multiaddr, #[structopt(flatten)] config: Config, }, BuyXmr { #[structopt(long = "swap-id")] swap_id: Uuid, #[structopt(long = "counterpart-peer-id")] alice_peer_id: PeerId, #[structopt(long = "counterpart-addr")] alice_addr: Multiaddr, #[structopt(flatten)] config: Config, }, } #[derive(structopt::StructOpt, Debug)] pub struct Config { #[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_path: Option, } fn parse_btc(str: &str) -> anyhow::Result { let amount = bitcoin::Amount::from_str_in(str, ::bitcoin::Denomination::Bitcoin)?; Ok(amount) } fn parse_xmr(str: &str) -> anyhow::Result { let amount = monero::Amount::parse_monero(str)?; Ok(amount) }