Skip to content
Closed
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
47 changes: 32 additions & 15 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ license = "BUSL-1.1"
publish = false

[workspace.dependencies]
async-trait = "0.1.89"
alloy = { version = "1.3", features = ["essentials"] }
built = { version = "0.8.0", features = ["git2", "chrono", "cargo-lock"] }
blst = "0.3"
Expand Down
53 changes: 0 additions & 53 deletions crates/app/src/deadline/mod.rs

This file was deleted.

3 changes: 0 additions & 3 deletions crates/app/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@ pub mod log;
/// until the deadline has elapsed.
pub mod retry;

/// Deadline
pub mod deadline;

/// Featureset defines a set of global features and their rollout status.
pub mod featureset;

Expand Down
1 change: 1 addition & 0 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ tar.workspace = true
tempfile.workspace = true
test-case.workspace = true
backon.workspace = true
wiremock.workspace = true

[lints]
workspace = true
5 changes: 5 additions & 0 deletions crates/cli/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ use clap::{Parser, Subcommand};

use crate::commands::{
create_cluster::CreateClusterArgs,
create_dkg::CreateDkgArgs,
create_enr::CreateEnrArgs,
enr::EnrArgs,
relay::RelayArgs,
Expand Down Expand Up @@ -133,6 +134,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
2 changes: 0 additions & 2 deletions crates/cli/src/commands/create_cluster.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,6 @@ use crate::{
pub const MIN_NODES: u64 = 3;
/// Minimum threshold value.
pub const MIN_THRESHOLD: u64 = 2;
/// Zero ethereum address (not allowed on mainnet/gnosis).
pub const ZERO_ADDRESS: &str = "0x0000000000000000000000000000000000000000";
/// HTTP scheme.
const HTTP_SCHEME: &str = "http";
/// HTTPS scheme.
Expand Down
Loading
Loading