add property to node for each template (#221)

* add property to node for each template
This commit is contained in:
Özgün Özerk
2024-06-11 18:02:15 +03:00
committed by GitHub
parent 7b1388b15c
commit b080293cdb
2 changed files with 4 additions and 0 deletions
+2
View File
@@ -76,6 +76,8 @@ pub fn development_config() -> ChainSpec {
properties.insert("tokenSymbol".into(), "UNIT".into());
properties.insert("tokenDecimals".into(), 12.into());
properties.insert("ss58Format".into(), 42.into());
// This is very important for us, it lets us track the usage of our templates, and have no downside for the node/runtime. Please do not remove :)
properties.insert("basedOn".into(), "OpenZeppelin EVM Template".into());
ChainSpec::builder(
parachain_template_runtime::WASM_BINARY
+2
View File
@@ -71,6 +71,8 @@ pub fn development_config() -> ChainSpec {
properties.insert("tokenSymbol".into(), "UNIT".into());
properties.insert("tokenDecimals".into(), 12.into());
properties.insert("ss58Format".into(), 42.into());
// This is very important for us, it lets us track the usage of our templates, and have no downside for the node/runtime. Please do not remove :)
properties.insert("basedOn".into(), "OpenZeppelin Generic Template".into());
ChainSpec::builder(
parachain_template_runtime::WASM_BINARY