Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Add heiko, parallel to ss58 registry #9254

Merged
merged 1 commit into from
Jul 6, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions primitives/core/src/crypto.rs
Original file line number Diff line number Diff line change
Expand Up @@ -590,6 +590,10 @@ ss58_address_format!(
(99, "polkafoundry", "PolkaFoundry Network, standard account (*25519).")
OriginTrailAccount =>
(101, "origintrail-parachain", "OriginTrail Parachain, ethereumm account (ECDSA).")
HeikoAccount =>
(110, "heiko", "Heiko, session key (*25519).")
ParallelAccount =>
(172, "parallel", "Parallel, session key (*25519).")
SocialAccount =>
(252, "social-network", "Social Network, standard account (*25519).")
Moonbeam =>
Expand Down
18 changes: 18 additions & 0 deletions ss58-registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -532,6 +532,15 @@
"standardAccount": "secp256k1",
"website": "https://origintrail.io"
},
{
"prefix": 110,
"network": "heiko",
"displayName": "Heiko",
"symbols": ["HKO"],
"decimals": [12],
"standardAccount": "*25519",
"website": "https://parallel.fi/"
},
{
"prefix": 136,
"network": "altair",
Expand All @@ -541,6 +550,15 @@
"standardAccount": "*25519",
"website": "https://centrifuge.io/"
},
{
"prefix": 172,
"network": "parallel",
"displayName": "Parallel",
"symbols": ["PARA"],
"decimals": [12],
"standardAccount": "*25519",
"website": "https://parallel.fi/"
},
{
"prefix": 252,
"network": "social-network",
Expand Down