Skip to content
Snippets Groups Projects
Commit 58a42566 authored by Ricardo Rius's avatar Ricardo Rius Committed by GitHub
Browse files

Fix Statemine ss58 prefixes. (#829)

* Fix Statemine prefix

* Add prefix to chain spec
parent f42092d2
Branches
No related merge requests found
......@@ -10,6 +10,7 @@
"telemetryEndpoints": null,
"protocolId": null,
"properties": {
"ss58Format": 2,
"tokenDecimals": 12,
"tokenSymbol": "KSM"
},
......@@ -8,6 +8,7 @@
"telemetryEndpoints": null,
"protocolId": null,
"properties": {
"ss58Format": 2,
"tokenDecimals": 12,
"tokenSymbol": "KSM"
},
......
......@@ -352,6 +352,7 @@ fn statemint_genesis(
pub fn statemine_development_config() -> StatemineChainSpec {
let mut properties = sc_chain_spec::Properties::new();
properties.insert("ss58Format".into(), 2.into());
properties.insert("tokenSymbol".into(), "KSM".into());
properties.insert("tokenDecimals".into(), 12.into());
......@@ -387,6 +388,7 @@ pub fn statemine_development_config() -> StatemineChainSpec {
pub fn statemine_local_config() -> StatemineChainSpec {
let mut properties = sc_chain_spec::Properties::new();
properties.insert("ss58Format".into(), 2.into());
properties.insert("tokenSymbol".into(), "KSM".into());
properties.insert("tokenDecimals".into(), 12.into());
......@@ -436,6 +438,7 @@ pub fn statemine_local_config() -> StatemineChainSpec {
pub fn statemine_config() -> StatemineChainSpec {
let mut properties = sc_chain_spec::Properties::new();
properties.insert("ss58Format".into(), 2.into());
properties.insert("tokenSymbol".into(), "KSM".into());
properties.insert("tokenDecimals".into(), 12.into());
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment