diff --git a/node/src/chain_spec.rs b/node/src/chain_spec.rs index 75c79fd..2402b5f 100644 --- a/node/src/chain_spec.rs +++ b/node/src/chain_spec.rs @@ -101,6 +101,59 @@ pub fn development_config() -> Result { )) } +pub fn development_config2() -> Result { + let wasm_binary = WASM_BINARY.ok_or_else(|| "Development wasm not available".to_string())?; + Ok(ChainSpec::from_genesis( + // Name + "Integritee Development (Solo2)", + // ID + "integritee-solo-dev2", + ChainType::Development, + move || { + genesis_config( + wasm_binary, + // Initial PoA authorities + vec![authority_keys_from_seed("Alice")], + // Sudo account + get_account_id_from_seed::("Alice"), + // Pre-funded accounts + vec![ + (get_account_id_from_seed::("Alice"), 2_000 * TEER), + (get_account_id_from_seed::("Bob"), 2_000 * TEER), + (get_account_id_from_seed::("Charlie"), 2_000 * TEER), + (TreasuryPalletId::get().into_account_truncating(), 2_000 * TEER), + ( + multisig_account( + vec![ + get_account_id_from_seed::("Alice"), + get_account_id_from_seed::("Bob"), + get_account_id_from_seed::("Charlie"), + ], + 2, + ), + 1_000 * TEER, + ), + ], + true, + ) + }, + // Bootnodes + vec![], + // Telemetry + None, + // Protocol ID + Some("teer"), + // Arbitrary string. Nodes will only synchronize with other nodes that have the same value + // in their `fork_id`. This can be used in order to segregate nodes in cases when multiple + // chains have the same genesis hash. + None, + // Properties + Some(teer_properties()), + // Extensions + None, + )) +} + pub fn local_testnet_config() -> Result { let wasm_binary = WASM_BINARY.ok_or_else(|| "Development wasm not available".to_string())?; Ok(ChainSpec::from_genesis( diff --git a/node/src/command.rs b/node/src/command.rs index 2637ba9..f0f4743 100644 --- a/node/src/command.rs +++ b/node/src/command.rs @@ -54,6 +54,7 @@ impl SubstrateCli for Cli { fn load_spec(&self, id: &str) -> Result, String> { Ok(match id { + "dev2" => Box::new(chain_spec::development_config2()?), "dev" => Box::new(chain_spec::development_config()?), "integritee-solo-fresh" => Box::new(chain_spec::integritee_solo_fresh_config()?), "integritee-solo" => Box::new(chain_spec::integritee_solo_config()?),