pop-chains 0.14.0

Library for generating, building and running parachains.
Documentation
// SPDX-License-Identifier: GPL-3.0

use askama::Template;

#[derive(Template)]
#[template(path = "base/chain_spec.templ", escape = "none")]
pub(crate) struct ChainSpec {
	pub(crate) token_symbol: String,
	pub(crate) decimals: u8,
	pub(crate) initial_endowment: String,
	// Identifies the template used to generate the chain.
	pub(crate) based_on: String,
}

#[derive(Template)]
#[template(path = "base/network.templ", escape = "none")]
pub(crate) struct Network {
	pub(crate) node: String,
}