fix: chain spec corrections - tokenDecimals 18->12, ss58Format, para_id

This commit is contained in:
2026-02-11 04:52:28 +03:00
parent cf481e748b
commit 60fec915de
3 changed files with 5 additions and 3 deletions
+2 -1
View File
@@ -164,10 +164,11 @@ pub fn versi_chain_spec_properties() -> serde_json::map::Map<String, serde_json:
}
/// PezkuwiChain mainnet chain spec properties (HEZ token)
/// Note: tokenDecimals must be 12 to match UNITS = 10^12 in runtime constants
pub fn pezkuwichain_chain_spec_properties() -> serde_json::map::Map<String, serde_json::Value> {
serde_json::json!({
"ss58Format": 42,
"tokenDecimals": 18,
"tokenDecimals": 12,
"tokenSymbol": "HEZ",
})
.as_object()