2020-03-04 03:28:02 +00:00
|
|
|
use clap::ArgMatches;
|
2021-07-09 06:15:32 +00:00
|
|
|
use clap_utils::{parse_optional, parse_required, parse_ssz_optional};
|
2020-12-08 05:41:10 +00:00
|
|
|
use eth2_network_config::Eth2NetworkConfig;
|
2021-10-02 19:57:23 +00:00
|
|
|
use genesis::interop_genesis_state;
|
|
|
|
use ssz::Encode;
|
2020-03-04 03:28:02 +00:00
|
|
|
use std::path::PathBuf;
|
2021-10-02 19:57:23 +00:00
|
|
|
use std::time::{SystemTime, UNIX_EPOCH};
|
|
|
|
use types::{test_utils::generate_deterministic_keypairs, Address, Config, EthSpec};
|
2020-03-04 03:28:02 +00:00
|
|
|
|
2021-07-09 06:15:32 +00:00
|
|
|
pub fn run<T: EthSpec>(testnet_dir_path: PathBuf, matches: &ArgMatches) -> Result<(), String> {
|
2020-04-19 02:20:43 +00:00
|
|
|
let deposit_contract_address: Address = parse_required(matches, "deposit-contract-address")?;
|
2020-04-20 01:58:39 +00:00
|
|
|
let deposit_contract_deploy_block = parse_required(matches, "deposit-contract-deploy-block")?;
|
2020-03-04 03:28:02 +00:00
|
|
|
|
2020-04-23 09:01:16 +00:00
|
|
|
let overwrite_files = matches.is_present("force");
|
|
|
|
|
2020-07-23 14:18:00 +00:00
|
|
|
if testnet_dir_path.exists() && !overwrite_files {
|
|
|
|
return Err(format!(
|
|
|
|
"{:?} already exists, will not overwrite. Use --force to overwrite",
|
|
|
|
testnet_dir_path
|
|
|
|
));
|
2020-03-04 03:28:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let mut spec = T::default_spec();
|
2020-04-20 01:58:39 +00:00
|
|
|
|
|
|
|
// Update the spec value if the flag was defined. Otherwise, leave it as the default.
|
|
|
|
macro_rules! maybe_update {
|
|
|
|
($flag: tt, $var: ident) => {
|
|
|
|
if let Some(val) = parse_optional(matches, $flag)? {
|
|
|
|
spec.$var = val
|
|
|
|
}
|
|
|
|
};
|
2020-03-04 03:28:02 +00:00
|
|
|
}
|
2020-04-20 01:58:39 +00:00
|
|
|
|
2020-11-23 23:54:03 +00:00
|
|
|
spec.deposit_contract_address = deposit_contract_address;
|
|
|
|
|
2020-04-20 01:58:39 +00:00
|
|
|
maybe_update!("min-genesis-time", min_genesis_time);
|
|
|
|
maybe_update!("min-deposit-amount", min_deposit_amount);
|
|
|
|
maybe_update!(
|
|
|
|
"min-genesis-active-validator-count",
|
|
|
|
min_genesis_active_validator_count
|
|
|
|
);
|
|
|
|
maybe_update!("max-effective-balance", max_effective_balance);
|
|
|
|
maybe_update!("effective-balance-increment", effective_balance_increment);
|
|
|
|
maybe_update!("ejection-balance", ejection_balance);
|
2020-05-03 22:03:31 +00:00
|
|
|
maybe_update!("eth1-follow-distance", eth1_follow_distance);
|
2020-06-11 00:07:10 +00:00
|
|
|
maybe_update!("genesis-delay", genesis_delay);
|
2021-03-30 05:17:58 +00:00
|
|
|
maybe_update!("eth1-id", deposit_chain_id);
|
|
|
|
maybe_update!("eth1-id", deposit_network_id);
|
2021-07-31 03:50:52 +00:00
|
|
|
maybe_update!("seconds-per-slot", seconds_per_slot);
|
2021-03-30 05:17:58 +00:00
|
|
|
maybe_update!("seconds-per-eth1-block", seconds_per_eth1_block);
|
2020-04-20 01:58:39 +00:00
|
|
|
|
|
|
|
if let Some(v) = parse_ssz_optional(matches, "genesis-fork-version")? {
|
2020-03-04 03:28:02 +00:00
|
|
|
spec.genesis_fork_version = v;
|
|
|
|
}
|
|
|
|
|
2021-07-09 06:15:32 +00:00
|
|
|
if let Some(fork_epoch) = parse_optional(matches, "altair-fork-epoch")? {
|
|
|
|
spec.altair_fork_epoch = Some(fork_epoch);
|
|
|
|
}
|
|
|
|
|
2021-10-02 19:57:23 +00:00
|
|
|
if let Some(fork_epoch) = parse_optional(matches, "merge-fork-epoch")? {
|
|
|
|
spec.merge_fork_epoch = Some(fork_epoch);
|
|
|
|
}
|
|
|
|
|
|
|
|
let genesis_state_bytes = if matches.is_present("interop-genesis-state") {
|
|
|
|
let eth1_block_hash = parse_required(matches, "eth1-block-hash")?;
|
|
|
|
let validator_count = parse_required(matches, "validator-count")?;
|
|
|
|
let genesis_time = if let Some(time) = parse_optional(matches, "genesis-time")? {
|
|
|
|
time
|
|
|
|
} else {
|
|
|
|
SystemTime::now()
|
|
|
|
.duration_since(UNIX_EPOCH)
|
|
|
|
.map_err(|e| format!("Unable to get time: {:?}", e))?
|
|
|
|
.as_secs()
|
|
|
|
};
|
|
|
|
|
|
|
|
let keypairs = generate_deterministic_keypairs(validator_count);
|
|
|
|
let genesis_state =
|
|
|
|
interop_genesis_state::<T>(&keypairs, genesis_time, eth1_block_hash, &spec)?;
|
|
|
|
|
|
|
|
Some(genesis_state.as_ssz_bytes())
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
2020-12-08 05:41:10 +00:00
|
|
|
let testnet = Eth2NetworkConfig {
|
2020-03-04 03:28:02 +00:00
|
|
|
deposit_contract_deploy_block,
|
|
|
|
boot_enr: Some(vec![]),
|
2021-10-02 19:57:23 +00:00
|
|
|
genesis_state_bytes,
|
2021-07-09 06:15:32 +00:00
|
|
|
config: Config::from_chain_spec::<T>(&spec),
|
2020-03-04 03:28:02 +00:00
|
|
|
};
|
|
|
|
|
2020-04-23 09:01:16 +00:00
|
|
|
testnet.write_to_file(testnet_dir_path, overwrite_files)
|
2020-03-04 03:28:02 +00:00
|
|
|
}
|