diff --git a/substrate/primitives/core/src/crypto.rs b/substrate/primitives/core/src/crypto.rs index b11cae5036..22fb97ae5c 100644 --- a/substrate/primitives/core/src/crypto.rs +++ b/substrate/primitives/core/src/crypto.rs @@ -494,6 +494,10 @@ ss58_address_format!( (24, "zero", "ZERO mainnet, standard account (*25519).") AlphavilleAccount => (25, "alphaville", "ZERO testnet, standard account (*25519).") + JupiterAccount => + (26, "jupiter", "Jupiter testnet, standard account (*25519).") + PatractAccount => + (27, "patract", "Patract mainnet, standard account (*25519).") SubsocialAccount => (28, "subsocial", "Subsocial network, standard account (*25519).") DhiwayAccount => diff --git a/substrate/ss58-registry.json b/substrate/ss58-registry.json index 60d678c0c5..7cb4e5d2c3 100644 --- a/substrate/ss58-registry.json +++ b/substrate/ss58-registry.json @@ -244,6 +244,24 @@ "standardAccount": "*25519", "website": "https://zero.io" }, + { + "prefix": 26, + "network": "jupiter", + "displayName": "Jupiter", + "symbols": ["jDOT"], + "decimals": [10], + "standardAccount": "*25519", + "website": "https://jupiter.patract.io" + }, + { + "prefix": 27, + "network": "patract", + "displayName": "Patract", + "symbols": ["pDOT", "pKSM"], + "decimals": [10, 12], + "standardAccount": "*25519", + "website": "https://patract.network" + }, { "prefix": 28, "network": "subsocial",