Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ hex.workspace = true
humantime.workspace = true
tokio.workspace = true
pluto-app.workspace = true
pluto-eth1wrap.workspace = true
pluto-cluster.workspace = true
pluto-relay-server.workspace = true
pluto-tracing.workspace = true
Expand Down
5 changes: 5 additions & 0 deletions crates/cli/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
use clap::{Parser, Subcommand};

use crate::commands::{
create_dkg::CreateDkgArgs,
create_enr::CreateEnrArgs,
enr::EnrArgs,
relay::RelayArgs,
Expand Down Expand Up @@ -132,6 +133,10 @@ pub struct CreateArgs {
/// Create subcommands
#[derive(Subcommand)]
pub enum CreateCommands {
/// Create a cluster definition file for a new Distributed Key Generation
/// ceremony
Dkg(Box<CreateDkgArgs>),

/// Create an Ethereum Node Record (ENR) private key to identify this charon
/// client
Enr(CreateEnrArgs),
Expand Down
Loading
Loading