difftreelog
add built-in westend-local chain spec
in: master
2 files changed
node/cli/src/chain_spec.rsdiffbeforeafterboth--- a/node/cli/src/chain_spec.rs
+++ b/node/cli/src/chain_spec.rs
@@ -96,12 +96,12 @@
)
}
-pub fn local_testnet_config(id: ParaId) -> ChainSpec {
+pub fn rococo_local_testnet_config(id: ParaId) -> ChainSpec {
ChainSpec::from_genesis(
// Name
- "Local Testnet",
+ "Unique Testnet @ Rococo Local",
// ID
- "local_testnet",
+ "unique_testnet_rococo",
ChainType::Local,
move || {
testnet_genesis(
@@ -145,6 +145,63 @@
)
}
+pub fn westend_local_testnet_config(id: ParaId) -> ChainSpec {
+ let mut properties = Map::new();
+ properties.insert("tokenSymbol".into(), "OPLW".into());
+ properties.insert("tokenDecimals".into(), 15.into());
+ properties.insert("ss58Format".into(), 42.into()); // Generic Substrate wildcard (SS58 checksum preimage)
+
+ ChainSpec::from_genesis(
+ // Name
+ "Unique Testnet @ Westend Local",
+ // ID
+ "unique_testnet_westend",
+ ChainType::Local,
+ move || {
+ testnet_genesis(
+ // Sudo account
+ get_account_id_from_seed::<sr25519::Public>("Alice"),
+ vec![
+ get_from_seed::<AuraId>("Alice"),
+ get_from_seed::<AuraId>("Bob"),
+ get_from_seed::<AuraId>("Charlie"),
+ get_from_seed::<AuraId>("Dave"),
+ get_from_seed::<AuraId>("Eve"),
+ ],
+ // Pre-funded accounts
+ vec![
+ get_account_id_from_seed::<sr25519::Public>("Alice"),
+ get_account_id_from_seed::<sr25519::Public>("Bob"),
+ get_account_id_from_seed::<sr25519::Public>("Charlie"),
+ get_account_id_from_seed::<sr25519::Public>("Dave"),
+ get_account_id_from_seed::<sr25519::Public>("Eve"),
+ get_account_id_from_seed::<sr25519::Public>("Ferdie"),
+ get_account_id_from_seed::<sr25519::Public>("Alice//stash"),
+ get_account_id_from_seed::<sr25519::Public>("Bob//stash"),
+ get_account_id_from_seed::<sr25519::Public>("Charlie//stash"),
+ get_account_id_from_seed::<sr25519::Public>("Dave//stash"),
+ get_account_id_from_seed::<sr25519::Public>("Eve//stash"),
+ get_account_id_from_seed::<sr25519::Public>("Ferdie//stash"),
+ ],
+ id,
+ )
+ },
+ // Bootnodes
+ vec![],
+ // Telemetry
+ None,
+ // Protocol ID
+ None,
+ // Properties
+ Some(properties),
+ // Extensions
+ Extensions {
+ relay_chain: "westend-local".into(),
+ para_id: id.into(),
+ },
+ )
+}
+
fn testnet_genesis(
root_key: AccountId,
initial_authorities: Vec<AuraId>,
node/cli/src/command.rsdiffbeforeafterboth1// This file is part of Substrate.23// Copyright (C) 2017-2021 Parity Technologies (UK) Ltd.4// SPDX-License-Identifier: Apache-2.056// Licensed under the Apache License, Version 2.0 (the "License");7// you may not use this file except in compliance with the License.8// You may obtain a copy of the License at9//10// http://www.apache.org/licenses/LICENSE-2.011//12// Unless required by applicable law or agreed to in writing, software13// distributed under the License is distributed on an "AS IS" BASIS,14// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.15// See the License for the specific language governing permissions and16// limitations under the License.1718use crate::{19 chain_spec,20 cli::{Cli, RelayChainCli, Subcommand},21 service::{new_partial, ParachainRuntimeExecutor},22};23use codec::Encode;24use cumulus_primitives_core::ParaId;25use cumulus_client_service::genesis::generate_genesis_block;26use log::info;27use nft_runtime::Block;28use polkadot_parachain::primitives::AccountIdConversion;29use sc_cli::{30 ChainSpec, CliConfiguration, DefaultConfigurationValues, ImportParams, KeystoreParams,31 NetworkParams, Result, RuntimeVersion, SharedParams, SubstrateCli,32};33use sc_service::{34 config::{BasePath, PrometheusConfig},35};36use sp_core::hexdisplay::HexDisplay;37use sp_runtime::traits::Block as BlockT;38use std::{io::Write, net::SocketAddr};3940fn load_spec(41 id: &str,42 para_id: ParaId,43) -> std::result::Result<Box<dyn sc_service::ChainSpec>, String> {44 Ok(match id {45 "dev" => Box::new(chain_spec::development_config(para_id)),46 "" | "local" => Box::new(chain_spec::local_testnet_config(para_id)),47 path => Box::new(chain_spec::ChainSpec::from_json_file(48 std::path::PathBuf::from(path),49 )?),50 })51}5253impl SubstrateCli for Cli {54 fn impl_name() -> String {55 "Parachain Collator Template".into()56 }5758 fn impl_version() -> String {59 env!("SUBSTRATE_CLI_IMPL_VERSION").into()60 }6162 fn description() -> String {63 format!(64 "Parachain Collator Template\n\nThe command-line arguments provided first will be \65 passed to the parachain node, while the arguments provided after -- will be passed \66 to the relaychain node.\n\n\67 {} [parachain-args] -- [relaychain-args]",68 Self::executable_name()69 )70 }7172 fn author() -> String {73 env!("CARGO_PKG_AUTHORS").into()74 }7576 fn support_url() -> String {77 "https://github.com/substrate-developer-hub/substrate-parachain-template/issues/new".into()78 }7980 fn copyright_start_year() -> i32 {81 201782 }8384 fn load_spec(&self, id: &str) -> std::result::Result<Box<dyn sc_service::ChainSpec>, String> {85 load_spec(id, self.run.parachain_id.unwrap_or(200).into())86 }8788 fn native_runtime_version(_: &Box<dyn ChainSpec>) -> &'static RuntimeVersion {89 &nft_runtime::VERSION90 }91}9293impl SubstrateCli for RelayChainCli {94 fn impl_name() -> String {95 "Parachain Collator Template".into()96 }9798 fn impl_version() -> String {99 env!("SUBSTRATE_CLI_IMPL_VERSION").into()100 }101102 fn description() -> String {103 "Parachain Collator Template\n\nThe command-line arguments provided first will be \104 passed to the parachain node, while the arguments provided after -- will be passed \105 to the relaychain node.\n\n\106 parachain-collator [parachain-args] -- [relaychain-args]"107 .into()108 }109110 fn author() -> String {111 env!("CARGO_PKG_AUTHORS").into()112 }113114 fn support_url() -> String {115 "https://github.com/substrate-developer-hub/substrate-parachain-template/issues/new".into()116 }117118 fn copyright_start_year() -> i32 {119 2017120 }121122 fn load_spec(&self, id: &str) -> std::result::Result<Box<dyn sc_service::ChainSpec>, String> {123 polkadot_cli::Cli::from_iter([RelayChainCli::executable_name()].iter()).load_spec(id)124 }125126 fn native_runtime_version(chain_spec: &Box<dyn ChainSpec>) -> &'static RuntimeVersion {127 polkadot_cli::Cli::native_runtime_version(chain_spec)128 }129}130131#[allow(clippy::borrowed_box)]132fn extract_genesis_wasm(chain_spec: &Box<dyn sc_service::ChainSpec>) -> Result<Vec<u8>> {133 let mut storage = chain_spec.build_storage()?;134135 storage136 .top137 .remove(sp_core::storage::well_known_keys::CODE)138 .ok_or_else(|| "Could not find wasm file in genesis state!".into())139}140141macro_rules! construct_async_run {142 (|$components:ident, $cli:ident, $cmd:ident, $config:ident| $( $code:tt )* ) => {{143 let runner = $cli.create_runner($cmd)?;144 runner.async_run(|$config| {145 let $components = new_partial::<146 _147 >(148 &$config,149 crate::service::parachain_build_import_queue,150 )?;151 let task_manager = $components.task_manager;152 { $( $code )* }.map(|v| (v, task_manager))153 })154 }}155}156157/// Parse command line arguments into service configuration.158pub fn run() -> Result<()> {159 let cli = Cli::from_args();160161 match &cli.subcommand {162 Some(Subcommand::BuildSpec(cmd)) => {163 let runner = cli.create_runner(cmd)?;164 runner.sync_run(|config| cmd.run(config.chain_spec, config.network))165 }166 Some(Subcommand::CheckBlock(cmd)) => {167 construct_async_run!(|components, cli, cmd, config| {168 Ok(cmd.run(components.client, components.import_queue))169 })170 }171 Some(Subcommand::ExportBlocks(cmd)) => {172 construct_async_run!(|components, cli, cmd, config| {173 Ok(cmd.run(components.client, config.database))174 })175 }176 Some(Subcommand::ExportState(cmd)) => {177 construct_async_run!(|components, cli, cmd, config| {178 Ok(cmd.run(components.client, config.chain_spec))179 })180 }181 Some(Subcommand::ImportBlocks(cmd)) => {182 construct_async_run!(|components, cli, cmd, config| {183 Ok(cmd.run(components.client, components.import_queue))184 })185 }186 Some(Subcommand::PurgeChain(cmd)) => {187 let runner = cli.create_runner(cmd)?;188189 runner.sync_run(|config| {190 let polkadot_cli = RelayChainCli::new(191 &config,192 [RelayChainCli::executable_name()]193 .iter()194 .chain(cli.relaychain_args.iter()),195 );196197 let polkadot_config = SubstrateCli::create_configuration(198 &polkadot_cli,199 &polkadot_cli,200 config.task_executor.clone(),201 )202 .map_err(|err| format!("Relay chain argument error: {}", err))?;203204 cmd.run(config, polkadot_config)205 })206 }207 Some(Subcommand::Revert(cmd)) => construct_async_run!(|components, cli, cmd, config| {208 Ok(cmd.run(components.client, components.backend))209 }),210 Some(Subcommand::ExportGenesisState(params)) => {211 let mut builder = sc_cli::LoggerBuilder::new("");212 builder.with_profiling(sc_tracing::TracingReceiver::Log, "");213 let _ = builder.init();214215 let block: Block = generate_genesis_block(&load_spec(216 ¶ms.chain.clone().unwrap_or_default(),217 params.parachain_id.unwrap_or(200).into(),218 )?)?;219 let raw_header = block.header().encode();220 let output_buf = if params.raw {221 raw_header222 } else {223 format!("0x{:?}", HexDisplay::from(&block.header().encode())).into_bytes()224 };225226 if let Some(output) = ¶ms.output {227 std::fs::write(output, output_buf)?;228 } else {229 std::io::stdout().write_all(&output_buf)?;230 }231232 Ok(())233 }234 Some(Subcommand::ExportGenesisWasm(params)) => {235 let mut builder = sc_cli::LoggerBuilder::new("");236 builder.with_profiling(sc_tracing::TracingReceiver::Log, "");237 let _ = builder.init();238239 let raw_wasm_blob =240 extract_genesis_wasm(&cli.load_spec(¶ms.chain.clone().unwrap_or_default())?)?;241 let output_buf = if params.raw {242 raw_wasm_blob243 } else {244 format!("0x{:?}", HexDisplay::from(&raw_wasm_blob)).into_bytes()245 };246247 if let Some(output) = ¶ms.output {248 std::fs::write(output, output_buf)?;249 } else {250 std::io::stdout().write_all(&output_buf)?;251 }252253 Ok(())254 }255 Some(Subcommand::Benchmark(cmd)) => {256 if cfg!(feature = "runtime-benchmarks") {257 let runner = cli.create_runner(cmd)?;258259 runner.sync_run(|config| cmd.run::<Block, ParachainRuntimeExecutor>(config))260 } else {261 Err("Benchmarking wasn't enabled when building the node. \262 You can enable it with `--features runtime-benchmarks`."263 .into())264 }265 }266 None => {267 let runner = cli.create_runner(&cli.run.normalize())?;268269 runner.run_node_until_exit(|config| async move {270 let para_id =271 chain_spec::Extensions::try_get(&*config.chain_spec).map(|e| e.para_id);272273 let polkadot_cli = RelayChainCli::new(274 &config,275 [RelayChainCli::executable_name()]276 .iter()277 .chain(cli.relaychain_args.iter()),278 );279280 let id = ParaId::from(cli.run.parachain_id.or(para_id).unwrap_or(200));281282 let parachain_account =283 AccountIdConversion::<polkadot_primitives::v0::AccountId>::into_account(&id);284285 let block: Block =286 generate_genesis_block(&config.chain_spec).map_err(|e| format!("{:?}", e))?;287 let genesis_state = format!("0x{:?}", HexDisplay::from(&block.header().encode()));288289 let task_executor = config.task_executor.clone();290 let polkadot_config =291 SubstrateCli::create_configuration(&polkadot_cli, &polkadot_cli, task_executor)292 .map_err(|err| format!("Relay chain argument error: {}", err))?;293294 info!("Parachain id: {:?}", id);295 info!("Parachain Account: {}", parachain_account);296 info!("Parachain genesis state: {}", genesis_state);297 info!(298 "Is collating: {}",299 if config.role.is_authority() {300 "yes"301 } else {302 "no"303 }304 );305306 crate::service::start_node(config, polkadot_config, id)307 .await308 .map(|r| r.0)309 .map_err(Into::into)310 })311 }312 }313}314315impl DefaultConfigurationValues for RelayChainCli {316 fn p2p_listen_port() -> u16 {317 30334318 }319320 fn rpc_ws_listen_port() -> u16 {321 9945322 }323324 fn rpc_http_listen_port() -> u16 {325 9934326 }327328 fn prometheus_listen_port() -> u16 {329 9616330 }331}332333impl CliConfiguration<Self> for RelayChainCli {334 fn shared_params(&self) -> &SharedParams {335 self.base.base.shared_params()336 }337338 fn import_params(&self) -> Option<&ImportParams> {339 self.base.base.import_params()340 }341342 fn network_params(&self) -> Option<&NetworkParams> {343 self.base.base.network_params()344 }345346 fn keystore_params(&self) -> Option<&KeystoreParams> {347 self.base.base.keystore_params()348 }349350 fn base_path(&self) -> Result<Option<BasePath>> {351 Ok(self352 .shared_params()353 .base_path()354 .or_else(|| self.base_path.clone().map(Into::into)))355 }356357 fn rpc_http(&self, default_listen_port: u16) -> Result<Option<SocketAddr>> {358 self.base.base.rpc_http(default_listen_port)359 }360361 fn rpc_ipc(&self) -> Result<Option<String>> {362 self.base.base.rpc_ipc()363 }364365 fn rpc_ws(&self, default_listen_port: u16) -> Result<Option<SocketAddr>> {366 self.base.base.rpc_ws(default_listen_port)367 }368369 fn prometheus_config(&self, default_listen_port: u16) -> Result<Option<PrometheusConfig>> {370 self.base.base.prometheus_config(default_listen_port)371 }372373 fn init<C: SubstrateCli>(&self) -> Result<()> {374 unreachable!("PolkadotCli is never initialized; qed");375 }376377 fn chain_id(&self, is_dev: bool) -> Result<String> {378 let chain_id = self.base.base.chain_id(is_dev)?;379380 Ok(if chain_id.is_empty() {381 self.chain_id.clone().unwrap_or_default()382 } else {383 chain_id384 })385 }386387 fn role(&self, is_dev: bool) -> Result<sc_service::Role> {388 self.base.base.role(is_dev)389 }390391 fn transaction_pool(&self) -> Result<sc_service::config::TransactionPoolOptions> {392 self.base.base.transaction_pool()393 }394395 fn state_cache_child_ratio(&self) -> Result<Option<usize>> {396 self.base.base.state_cache_child_ratio()397 }398399 fn rpc_methods(&self) -> Result<sc_service::config::RpcMethods> {400 self.base.base.rpc_methods()401 }402403 fn rpc_ws_max_connections(&self) -> Result<Option<usize>> {404 self.base.base.rpc_ws_max_connections()405 }406407 fn rpc_cors(&self, is_dev: bool) -> Result<Option<Vec<String>>> {408 self.base.base.rpc_cors(is_dev)409 }410411 fn telemetry_external_transport(&self) -> Result<Option<sc_service::config::ExtTransport>> {412 self.base.base.telemetry_external_transport()413 }414415 fn default_heap_pages(&self) -> Result<Option<u64>> {416 self.base.base.default_heap_pages()417 }418419 fn force_authoring(&self) -> Result<bool> {420 self.base.base.force_authoring()421 }422423 fn disable_grandpa(&self) -> Result<bool> {424 self.base.base.disable_grandpa()425 }426427 fn max_runtime_instances(&self) -> Result<Option<usize>> {428 self.base.base.max_runtime_instances()429 }430431 fn announce_block(&self) -> Result<bool> {432 self.base.base.announce_block()433 }434435 fn telemetry_endpoints(436 &self,437 chain_spec: &Box<dyn ChainSpec>,438 ) -> Result<Option<sc_telemetry::TelemetryEndpoints>> {439 self.base.base.telemetry_endpoints(chain_spec)440 }441}1// This file is part of Substrate.23// Copyright (C) 2017-2021 Parity Technologies (UK) Ltd.4// SPDX-License-Identifier: Apache-2.056// Licensed under the Apache License, Version 2.0 (the "License");7// you may not use this file except in compliance with the License.8// You may obtain a copy of the License at9//10// http://www.apache.org/licenses/LICENSE-2.011//12// Unless required by applicable law or agreed to in writing, software13// distributed under the License is distributed on an "AS IS" BASIS,14// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.15// See the License for the specific language governing permissions and16// limitations under the License.1718use crate::{19 chain_spec,20 cli::{Cli, RelayChainCli, Subcommand},21 service::{new_partial, ParachainRuntimeExecutor},22};23use codec::Encode;24use cumulus_primitives_core::ParaId;25use cumulus_client_service::genesis::generate_genesis_block;26use log::info;27use nft_runtime::Block;28use polkadot_parachain::primitives::AccountIdConversion;29use sc_cli::{30 ChainSpec, CliConfiguration, DefaultConfigurationValues, ImportParams, KeystoreParams,31 NetworkParams, Result, RuntimeVersion, SharedParams, SubstrateCli,32};33use sc_service::{34 config::{BasePath, PrometheusConfig},35};36use sp_core::hexdisplay::HexDisplay;37use sp_runtime::traits::Block as BlockT;38use std::{io::Write, net::SocketAddr};3940fn load_spec(41 id: &str,42 para_id: ParaId,43) -> std::result::Result<Box<dyn sc_service::ChainSpec>, String> {44 Ok(match id {45 "dev" => Box::new(chain_spec::development_config(para_id)),46 "westend-local" => Box::new(chain_spec::westend_local_testnet_config(para_id)),47 "" | "local" => Box::new(chain_spec::rococo_local_testnet_config(para_id)),48 path => Box::new(chain_spec::ChainSpec::from_json_file(49 std::path::PathBuf::from(path),50 )?),51 })52}5354impl SubstrateCli for Cli {55 fn impl_name() -> String {56 "Parachain Collator Template".into()57 }5859 fn impl_version() -> String {60 env!("SUBSTRATE_CLI_IMPL_VERSION").into()61 }6263 fn description() -> String {64 format!(65 "Parachain Collator Template\n\nThe command-line arguments provided first will be \66 passed to the parachain node, while the arguments provided after -- will be passed \67 to the relaychain node.\n\n\68 {} [parachain-args] -- [relaychain-args]",69 Self::executable_name()70 )71 }7273 fn author() -> String {74 env!("CARGO_PKG_AUTHORS").into()75 }7677 fn support_url() -> String {78 "https://github.com/substrate-developer-hub/substrate-parachain-template/issues/new".into()79 }8081 fn copyright_start_year() -> i32 {82 201783 }8485 fn load_spec(&self, id: &str) -> std::result::Result<Box<dyn sc_service::ChainSpec>, String> {86 load_spec(id, self.run.parachain_id.unwrap_or(200).into())87 }8889 fn native_runtime_version(_: &Box<dyn ChainSpec>) -> &'static RuntimeVersion {90 &nft_runtime::VERSION91 }92}9394impl SubstrateCli for RelayChainCli {95 fn impl_name() -> String {96 "Parachain Collator Template".into()97 }9899 fn impl_version() -> String {100 env!("SUBSTRATE_CLI_IMPL_VERSION").into()101 }102103 fn description() -> String {104 "Parachain Collator Template\n\nThe command-line arguments provided first will be \105 passed to the parachain node, while the arguments provided after -- will be passed \106 to the relaychain node.\n\n\107 parachain-collator [parachain-args] -- [relaychain-args]"108 .into()109 }110111 fn author() -> String {112 env!("CARGO_PKG_AUTHORS").into()113 }114115 fn support_url() -> String {116 "https://github.com/substrate-developer-hub/substrate-parachain-template/issues/new".into()117 }118119 fn copyright_start_year() -> i32 {120 2017121 }122123 fn load_spec(&self, id: &str) -> std::result::Result<Box<dyn sc_service::ChainSpec>, String> {124 polkadot_cli::Cli::from_iter([RelayChainCli::executable_name()].iter()).load_spec(id)125 }126127 fn native_runtime_version(chain_spec: &Box<dyn ChainSpec>) -> &'static RuntimeVersion {128 polkadot_cli::Cli::native_runtime_version(chain_spec)129 }130}131132#[allow(clippy::borrowed_box)]133fn extract_genesis_wasm(chain_spec: &Box<dyn sc_service::ChainSpec>) -> Result<Vec<u8>> {134 let mut storage = chain_spec.build_storage()?;135136 storage137 .top138 .remove(sp_core::storage::well_known_keys::CODE)139 .ok_or_else(|| "Could not find wasm file in genesis state!".into())140}141142macro_rules! construct_async_run {143 (|$components:ident, $cli:ident, $cmd:ident, $config:ident| $( $code:tt )* ) => {{144 let runner = $cli.create_runner($cmd)?;145 runner.async_run(|$config| {146 let $components = new_partial::<147 _148 >(149 &$config,150 crate::service::parachain_build_import_queue,151 )?;152 let task_manager = $components.task_manager;153 { $( $code )* }.map(|v| (v, task_manager))154 })155 }}156}157158/// Parse command line arguments into service configuration.159pub fn run() -> Result<()> {160 let cli = Cli::from_args();161162 match &cli.subcommand {163 Some(Subcommand::BuildSpec(cmd)) => {164 let runner = cli.create_runner(cmd)?;165 runner.sync_run(|config| cmd.run(config.chain_spec, config.network))166 }167 Some(Subcommand::CheckBlock(cmd)) => {168 construct_async_run!(|components, cli, cmd, config| {169 Ok(cmd.run(components.client, components.import_queue))170 })171 }172 Some(Subcommand::ExportBlocks(cmd)) => {173 construct_async_run!(|components, cli, cmd, config| {174 Ok(cmd.run(components.client, config.database))175 })176 }177 Some(Subcommand::ExportState(cmd)) => {178 construct_async_run!(|components, cli, cmd, config| {179 Ok(cmd.run(components.client, config.chain_spec))180 })181 }182 Some(Subcommand::ImportBlocks(cmd)) => {183 construct_async_run!(|components, cli, cmd, config| {184 Ok(cmd.run(components.client, components.import_queue))185 })186 }187 Some(Subcommand::PurgeChain(cmd)) => {188 let runner = cli.create_runner(cmd)?;189190 runner.sync_run(|config| {191 let polkadot_cli = RelayChainCli::new(192 &config,193 [RelayChainCli::executable_name()]194 .iter()195 .chain(cli.relaychain_args.iter()),196 );197198 let polkadot_config = SubstrateCli::create_configuration(199 &polkadot_cli,200 &polkadot_cli,201 config.task_executor.clone(),202 )203 .map_err(|err| format!("Relay chain argument error: {}", err))?;204205 cmd.run(config, polkadot_config)206 })207 }208 Some(Subcommand::Revert(cmd)) => construct_async_run!(|components, cli, cmd, config| {209 Ok(cmd.run(components.client, components.backend))210 }),211 Some(Subcommand::ExportGenesisState(params)) => {212 let mut builder = sc_cli::LoggerBuilder::new("");213 builder.with_profiling(sc_tracing::TracingReceiver::Log, "");214 let _ = builder.init();215216 let block: Block = generate_genesis_block(&load_spec(217 ¶ms.chain.clone().unwrap_or_default(),218 params.parachain_id.unwrap_or(200).into(),219 )?)?;220 let raw_header = block.header().encode();221 let output_buf = if params.raw {222 raw_header223 } else {224 format!("0x{:?}", HexDisplay::from(&block.header().encode())).into_bytes()225 };226227 if let Some(output) = ¶ms.output {228 std::fs::write(output, output_buf)?;229 } else {230 std::io::stdout().write_all(&output_buf)?;231 }232233 Ok(())234 }235 Some(Subcommand::ExportGenesisWasm(params)) => {236 let mut builder = sc_cli::LoggerBuilder::new("");237 builder.with_profiling(sc_tracing::TracingReceiver::Log, "");238 let _ = builder.init();239240 let raw_wasm_blob =241 extract_genesis_wasm(&cli.load_spec(¶ms.chain.clone().unwrap_or_default())?)?;242 let output_buf = if params.raw {243 raw_wasm_blob244 } else {245 format!("0x{:?}", HexDisplay::from(&raw_wasm_blob)).into_bytes()246 };247248 if let Some(output) = ¶ms.output {249 std::fs::write(output, output_buf)?;250 } else {251 std::io::stdout().write_all(&output_buf)?;252 }253254 Ok(())255 }256 Some(Subcommand::Benchmark(cmd)) => {257 if cfg!(feature = "runtime-benchmarks") {258 let runner = cli.create_runner(cmd)?;259260 runner.sync_run(|config| cmd.run::<Block, ParachainRuntimeExecutor>(config))261 } else {262 Err("Benchmarking wasn't enabled when building the node. \263 You can enable it with `--features runtime-benchmarks`."264 .into())265 }266 }267 None => {268 let runner = cli.create_runner(&cli.run.normalize())?;269270 runner.run_node_until_exit(|config| async move {271 let para_id =272 chain_spec::Extensions::try_get(&*config.chain_spec).map(|e| e.para_id);273274 let polkadot_cli = RelayChainCli::new(275 &config,276 [RelayChainCli::executable_name()]277 .iter()278 .chain(cli.relaychain_args.iter()),279 );280281 let id = ParaId::from(cli.run.parachain_id.or(para_id).unwrap_or(200));282283 let parachain_account =284 AccountIdConversion::<polkadot_primitives::v0::AccountId>::into_account(&id);285286 let block: Block =287 generate_genesis_block(&config.chain_spec).map_err(|e| format!("{:?}", e))?;288 let genesis_state = format!("0x{:?}", HexDisplay::from(&block.header().encode()));289290 let task_executor = config.task_executor.clone();291 let polkadot_config =292 SubstrateCli::create_configuration(&polkadot_cli, &polkadot_cli, task_executor)293 .map_err(|err| format!("Relay chain argument error: {}", err))?;294295 info!("Parachain id: {:?}", id);296 info!("Parachain Account: {}", parachain_account);297 info!("Parachain genesis state: {}", genesis_state);298 info!(299 "Is collating: {}",300 if config.role.is_authority() {301 "yes"302 } else {303 "no"304 }305 );306307 crate::service::start_node(config, polkadot_config, id)308 .await309 .map(|r| r.0)310 .map_err(Into::into)311 })312 }313 }314}315316impl DefaultConfigurationValues for RelayChainCli {317 fn p2p_listen_port() -> u16 {318 30334319 }320321 fn rpc_ws_listen_port() -> u16 {322 9945323 }324325 fn rpc_http_listen_port() -> u16 {326 9934327 }328329 fn prometheus_listen_port() -> u16 {330 9616331 }332}333334impl CliConfiguration<Self> for RelayChainCli {335 fn shared_params(&self) -> &SharedParams {336 self.base.base.shared_params()337 }338339 fn import_params(&self) -> Option<&ImportParams> {340 self.base.base.import_params()341 }342343 fn network_params(&self) -> Option<&NetworkParams> {344 self.base.base.network_params()345 }346347 fn keystore_params(&self) -> Option<&KeystoreParams> {348 self.base.base.keystore_params()349 }350351 fn base_path(&self) -> Result<Option<BasePath>> {352 Ok(self353 .shared_params()354 .base_path()355 .or_else(|| self.base_path.clone().map(Into::into)))356 }357358 fn rpc_http(&self, default_listen_port: u16) -> Result<Option<SocketAddr>> {359 self.base.base.rpc_http(default_listen_port)360 }361362 fn rpc_ipc(&self) -> Result<Option<String>> {363 self.base.base.rpc_ipc()364 }365366 fn rpc_ws(&self, default_listen_port: u16) -> Result<Option<SocketAddr>> {367 self.base.base.rpc_ws(default_listen_port)368 }369370 fn prometheus_config(&self, default_listen_port: u16) -> Result<Option<PrometheusConfig>> {371 self.base.base.prometheus_config(default_listen_port)372 }373374 fn init<C: SubstrateCli>(&self) -> Result<()> {375 unreachable!("PolkadotCli is never initialized; qed");376 }377378 fn chain_id(&self, is_dev: bool) -> Result<String> {379 let chain_id = self.base.base.chain_id(is_dev)?;380381 Ok(if chain_id.is_empty() {382 self.chain_id.clone().unwrap_or_default()383 } else {384 chain_id385 })386 }387388 fn role(&self, is_dev: bool) -> Result<sc_service::Role> {389 self.base.base.role(is_dev)390 }391392 fn transaction_pool(&self) -> Result<sc_service::config::TransactionPoolOptions> {393 self.base.base.transaction_pool()394 }395396 fn state_cache_child_ratio(&self) -> Result<Option<usize>> {397 self.base.base.state_cache_child_ratio()398 }399400 fn rpc_methods(&self) -> Result<sc_service::config::RpcMethods> {401 self.base.base.rpc_methods()402 }403404 fn rpc_ws_max_connections(&self) -> Result<Option<usize>> {405 self.base.base.rpc_ws_max_connections()406 }407408 fn rpc_cors(&self, is_dev: bool) -> Result<Option<Vec<String>>> {409 self.base.base.rpc_cors(is_dev)410 }411412 fn telemetry_external_transport(&self) -> Result<Option<sc_service::config::ExtTransport>> {413 self.base.base.telemetry_external_transport()414 }415416 fn default_heap_pages(&self) -> Result<Option<u64>> {417 self.base.base.default_heap_pages()418 }419420 fn force_authoring(&self) -> Result<bool> {421 self.base.base.force_authoring()422 }423424 fn disable_grandpa(&self) -> Result<bool> {425 self.base.base.disable_grandpa()426 }427428 fn max_runtime_instances(&self) -> Result<Option<usize>> {429 self.base.base.max_runtime_instances()430 }431432 fn announce_block(&self) -> Result<bool> {433 self.base.base.announce_block()434 }435436 fn telemetry_endpoints(437 &self,438 chain_spec: &Box<dyn ChainSpec>,439 ) -> Result<Option<sc_telemetry::TelemetryEndpoints>> {440 self.base.base.telemetry_endpoints(chain_spec)441 }442}