-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
242 additions
and
252 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
use clap::Parser; | ||
use std::path::PathBuf; | ||
use structopt::StructOpt; | ||
|
||
#[derive(Debug, StructOpt)] | ||
#[structopt( | ||
#[derive(Debug, Parser)] | ||
#[command( | ||
name = "Blueprint Manager", | ||
about = "An program executor that connects to the Tangle network and runs protocols dynamically on the fly" | ||
)] | ||
pub struct BlueprintManagerConfig { | ||
/// The path to the gadget configuration file | ||
#[structopt(parse(from_os_str), short = "s", long)] | ||
#[arg(short = 's', long)] | ||
pub gadget_config: Option<PathBuf>, | ||
/// The path to the keystore | ||
#[structopt(short = "k", long)] | ||
#[arg(short = 'k', long)] | ||
pub keystore_uri: String, | ||
/// The directory in which all gadgets will store their data | ||
#[structopt(long, short = "d", parse(from_os_str), default_value = "./data")] | ||
#[arg(long, short = 'd', default_value = "./data")] | ||
pub data_dir: PathBuf, | ||
/// The verbosity level, can be used multiple times | ||
#[structopt(long, short = "v", parse(from_occurrences))] | ||
pub verbose: i32, | ||
#[arg(long, short = 'v', action = clap::ArgAction::Count)] | ||
pub verbose: u8, | ||
/// Whether to use pretty logging | ||
#[structopt(long)] | ||
#[arg(long)] | ||
pub pretty: bool, | ||
/// An optional unique string identifier for the blueprint manager to differentiate between multiple | ||
/// running instances of a BlueprintManager (mostly for debugging purposes) | ||
#[structopt(long, short = "id")] | ||
#[arg(long, alias = "id")] | ||
pub instance_id: Option<String>, | ||
#[structopt(long, short = "t")] | ||
#[arg(long, short = 't')] | ||
pub test_mode: bool, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
blueprints/incredible-squaring-eigenlayer/contracts/lib/forge-std
Submodule forge-std
updated
4 files
+193 −0 | CONTRIBUTING.md | |
+16 −0 | README.md | |
+73 −8 | src/Vm.sol | |
+2 −2 | test/Vm.t.sol |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.