2021-01-20 19:20:57 -05:00
|
|
|
use crate::{bitcoin, monero};
|
2020-12-18 01:39:04 -05:00
|
|
|
use libp2p::{core::Multiaddr, PeerId};
|
2021-01-26 21:33:32 -05:00
|
|
|
use std::path::PathBuf;
|
2020-11-05 19:10:22 -05:00
|
|
|
use uuid::Uuid;
|
2020-10-28 23:45:45 -04:00
|
|
|
|
2020-12-15 05:26:02 -05:00
|
|
|
#[derive(structopt::StructOpt, Debug)]
|
|
|
|
pub struct Options {
|
2021-01-26 21:33:32 -05:00
|
|
|
#[structopt(
|
|
|
|
long = "data-dir",
|
|
|
|
help = "Provide a custom path to the data directory.",
|
|
|
|
parse(from_os_str)
|
|
|
|
)]
|
|
|
|
pub data_dir: Option<PathBuf>,
|
2020-12-15 05:26:02 -05:00
|
|
|
|
|
|
|
#[structopt(subcommand)]
|
|
|
|
pub cmd: Command,
|
|
|
|
}
|
|
|
|
|
2020-10-15 18:14:39 -04:00
|
|
|
#[derive(structopt::StructOpt, Debug)]
|
2021-01-04 22:08:36 -05:00
|
|
|
#[structopt(name = "xmr_btc-swap", about = "XMR BTC atomic swap")]
|
2020-12-15 05:26:02 -05:00
|
|
|
pub enum Command {
|
2020-12-04 00:27:17 -05:00
|
|
|
SellXmr {
|
2021-01-06 19:45:55 -05:00
|
|
|
#[structopt(long = "p2p-address", default_value = "/ip4/0.0.0.0/tcp/9876")]
|
2020-10-29 07:18:59 -04:00
|
|
|
listen_addr: Multiaddr,
|
2020-10-15 18:14:39 -04:00
|
|
|
|
2020-12-21 01:52:52 -05:00
|
|
|
#[structopt(long = "send-xmr", help = "Monero amount as floating point nr without denomination (e.g. 125.1)", parse(try_from_str = parse_xmr))]
|
2021-01-04 22:08:36 -05:00
|
|
|
send_monero: monero::Amount,
|
2020-10-26 01:55:53 -04:00
|
|
|
|
2020-12-21 01:52:52 -05:00
|
|
|
#[structopt(long = "receive-btc", help = "Bitcoin amount as floating point nr without denomination (e.g. 1.25)", parse(try_from_str = parse_btc))]
|
2021-01-07 18:41:25 -05:00
|
|
|
receive_bitcoin: bitcoin::Amount,
|
2021-01-26 21:33:32 -05:00
|
|
|
|
|
|
|
#[structopt(flatten)]
|
|
|
|
config: Config,
|
2020-12-04 00:27:17 -05:00
|
|
|
},
|
|
|
|
BuyXmr {
|
2020-12-21 01:52:52 -05:00
|
|
|
#[structopt(long = "connect-peer-id")]
|
2020-12-18 01:39:04 -05:00
|
|
|
alice_peer_id: PeerId,
|
|
|
|
|
2020-12-21 01:52:52 -05:00
|
|
|
#[structopt(long = "connect-addr")]
|
2020-10-29 07:18:59 -04:00
|
|
|
alice_addr: Multiaddr,
|
|
|
|
|
2020-12-21 01:52:52 -05:00
|
|
|
#[structopt(long = "send-btc", help = "Bitcoin amount as floating point nr without denomination (e.g. 1.25)", parse(try_from_str = parse_btc))]
|
2021-01-07 18:41:25 -05:00
|
|
|
send_bitcoin: bitcoin::Amount,
|
2020-12-04 00:27:17 -05:00
|
|
|
|
2020-12-21 01:52:52 -05:00
|
|
|
#[structopt(long = "receive-xmr", help = "Monero amount as floating point nr without denomination (e.g. 125.1)", parse(try_from_str = parse_xmr))]
|
2021-01-04 22:08:36 -05:00
|
|
|
receive_monero: monero::Amount,
|
2021-01-26 21:33:32 -05:00
|
|
|
|
|
|
|
#[structopt(flatten)]
|
|
|
|
config: Config,
|
2020-10-28 23:45:45 -04:00
|
|
|
},
|
2020-11-05 00:55:30 -05:00
|
|
|
History,
|
2020-12-20 22:43:44 -05:00
|
|
|
Resume(Resume),
|
2021-02-01 00:10:43 -05:00
|
|
|
Cancel(Cancel),
|
2020-12-20 22:43:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(structopt::StructOpt, Debug)]
|
|
|
|
pub enum Resume {
|
|
|
|
SellXmr {
|
2020-12-21 01:52:52 -05:00
|
|
|
#[structopt(long = "swap-id")]
|
2020-11-05 19:10:22 -05:00
|
|
|
swap_id: Uuid,
|
|
|
|
|
2020-12-20 22:43:44 -05:00
|
|
|
#[structopt(long = "listen-address", default_value = "/ip4/127.0.0.1/tcp/9876")]
|
|
|
|
listen_addr: Multiaddr,
|
2021-01-26 21:33:32 -05:00
|
|
|
|
|
|
|
#[structopt(flatten)]
|
|
|
|
config: Config,
|
2020-12-20 22:43:44 -05:00
|
|
|
},
|
|
|
|
BuyXmr {
|
|
|
|
#[structopt(long = "swap-id")]
|
|
|
|
swap_id: Uuid,
|
|
|
|
|
|
|
|
#[structopt(long = "counterpart-peer-id")]
|
2020-12-18 01:39:04 -05:00
|
|
|
alice_peer_id: PeerId,
|
|
|
|
|
2020-12-20 22:43:44 -05:00
|
|
|
#[structopt(long = "counterpart-addr")]
|
2020-12-18 01:39:04 -05:00
|
|
|
alice_addr: Multiaddr,
|
|
|
|
|
2021-01-26 21:33:32 -05:00
|
|
|
#[structopt(flatten)]
|
|
|
|
config: Config,
|
2020-11-05 19:10:22 -05:00
|
|
|
},
|
2020-10-15 18:14:39 -04:00
|
|
|
}
|
2020-12-04 00:27:17 -05:00
|
|
|
|
2021-02-01 00:10:43 -05:00
|
|
|
#[derive(structopt::StructOpt, Debug)]
|
|
|
|
pub enum Cancel {
|
|
|
|
BuyXmr {
|
|
|
|
#[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")]
|
|
|
|
alice_peer_id: PeerId,
|
|
|
|
#[structopt(long = "counterpart-addr")]
|
|
|
|
alice_addr: Multiaddr,
|
|
|
|
|
|
|
|
#[structopt(flatten)]
|
|
|
|
config: Config,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2021-01-26 21:33:32 -05:00
|
|
|
#[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 path: Option<PathBuf>,
|
|
|
|
}
|
|
|
|
|
2020-12-04 00:27:17 -05:00
|
|
|
fn parse_btc(str: &str) -> anyhow::Result<bitcoin::Amount> {
|
|
|
|
let amount = bitcoin::Amount::from_str_in(str, ::bitcoin::Denomination::Bitcoin)?;
|
|
|
|
Ok(amount)
|
|
|
|
}
|
|
|
|
|
2021-01-04 22:08:36 -05:00
|
|
|
fn parse_xmr(str: &str) -> anyhow::Result<monero::Amount> {
|
|
|
|
let amount = monero::Amount::parse_monero(str)?;
|
2020-12-04 00:27:17 -05:00
|
|
|
Ok(amount)
|
|
|
|
}
|