9e0bb80163
* Removed reputation field from existing topology * ibid for registration time * Basic bond to topology conversion * Made existing tests compilable * Added owner and stake fields to mix and gateway topology entries * Moved node conversion to topology crate * Added mixnet contract field to clients configs * topology refresher trying to use new validator * Removed clients depepdency on the old validator client * Removed mixnode dependency on the old validator client * Removed gateway dependency on the old validator client * Removed location field fron mixnode and gateway configs * Removed incentives address from mixnodes and gateways * Cargo.lock changes * Ignoring clippy warnings originating from codegen from JsonSchema * no longer formating string with a literal
77 lines
2.0 KiB
Rust
77 lines
2.0 KiB
Rust
// Copyright 2020 - Nym Technologies SA <contact@nymtech.net>
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
use clap::{App, ArgMatches};
|
|
|
|
mod commands;
|
|
mod config;
|
|
mod node;
|
|
|
|
fn main() {
|
|
dotenv::dotenv().ok();
|
|
setup_logging();
|
|
println!("{}", banner());
|
|
|
|
let arg_matches = App::new("Nym Mixnet Gateway")
|
|
.version(env!("CARGO_PKG_VERSION"))
|
|
.author("Nymtech")
|
|
.about("Implementation of the Nym Mixnet Gateway")
|
|
.subcommand(commands::init::command_args())
|
|
.subcommand(commands::run::command_args())
|
|
.subcommand(commands::upgrade::command_args())
|
|
.get_matches();
|
|
|
|
execute(arg_matches);
|
|
}
|
|
|
|
fn execute(matches: ArgMatches) {
|
|
match matches.subcommand() {
|
|
("init", Some(m)) => commands::init::execute(m),
|
|
("run", Some(m)) => commands::run::execute(m),
|
|
("upgrade", Some(m)) => commands::upgrade::execute(m),
|
|
_ => println!("{}", usage()),
|
|
}
|
|
}
|
|
|
|
fn usage() -> &'static str {
|
|
"usage: --help to see available options.\n\n"
|
|
}
|
|
|
|
fn banner() -> String {
|
|
format!(
|
|
r#"
|
|
|
|
_ __ _ _ _ __ ___
|
|
| '_ \| | | | '_ \ _ \
|
|
| | | | |_| | | | | | |
|
|
|_| |_|\__, |_| |_| |_|
|
|
|___/
|
|
|
|
(gateway - version {:})
|
|
|
|
"#,
|
|
env!("CARGO_PKG_VERSION")
|
|
)
|
|
}
|
|
|
|
fn setup_logging() {
|
|
let mut log_builder = pretty_env_logger::formatted_timed_builder();
|
|
if let Ok(s) = ::std::env::var("RUST_LOG") {
|
|
log_builder.parse_filters(&s);
|
|
} else {
|
|
// default to 'Info'
|
|
log_builder.filter(None, log::LevelFilter::Info);
|
|
}
|
|
|
|
log_builder
|
|
.filter_module("hyper", log::LevelFilter::Warn)
|
|
.filter_module("tokio_reactor", log::LevelFilter::Warn)
|
|
.filter_module("reqwest", log::LevelFilter::Warn)
|
|
.filter_module("mio", log::LevelFilter::Warn)
|
|
.filter_module("want", log::LevelFilter::Warn)
|
|
.filter_module("sled", log::LevelFilter::Warn)
|
|
.filter_module("tungstenite", log::LevelFilter::Warn)
|
|
.filter_module("tokio_tungstenite", log::LevelFilter::Warn)
|
|
.init();
|
|
}
|