Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

generate a sample etch yaml in new env generation #3530

Merged
Merged
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
28 changes: 27 additions & 1 deletion src/subcommand/env.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use {super::*, colored::Colorize, std::net::TcpListener};
use {super::*, crate::wallet::batch, colored::Colorize, std::net::TcpListener};

struct KillOnDrop(process::Child);

Expand Down Expand Up @@ -64,6 +64,32 @@ rpcport={bitcoind_port}
),
)?;

fs::write(absolute.join("inscription.txt"), "FOO")?;

let yaml = serde_yaml::to_string(&batch::File {
etching: Some(batch::Etching {
divisibility: 0,
rune: "FOO".parse::<SpacedRune>().unwrap(),
supply: "2000".parse().unwrap(),
premine: "1000".parse().unwrap(),
symbol: '¢',
terms: Some(batch::Terms {
amount: "1000".parse().unwrap(),
cap: 1,
..default()
}),
turbo: false,
}),
inscriptions: vec![batch::Entry {
file: Some("env/inscription.txt".into()),
..default()
}],
..default()
})
.unwrap();

fs::write(absolute.join("batch.yaml"), yaml)?;

let _bitcoind = KillOnDrop(
Command::new("bitcoind")
.arg(format!("-conf={}", absolute.join("bitcoin.conf").display()))
Expand Down
Loading