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

Add OriginTrail Parachain to SS58 Registry #9067

Merged
merged 4 commits into from
Jun 24, 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
2 changes: 2 additions & 0 deletions primitives/core/src/crypto.rs
Original file line number Diff line number Diff line change
Expand Up @@ -588,6 +588,8 @@ ss58_address_format!(
(98, "polkasmith", "PolkaSmith Canary Network, standard account (*25519).")
PolkaFoundry =>
(99, "polkafoundry", "PolkaFoundry Network, standard account (*25519).")
OriginTrailAccount =>
(101, "origintrail-parachain", "OriginTrail Parachain, ethereumm account (ECDSA).")
SocialAccount =>
(252, "social-network", "Social Network, standard account (*25519).")
Moonbeam =>
Expand Down
11 changes: 10 additions & 1 deletion ss58-registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,16 @@
"decimals": [18],
"standardAccount": "*25519",
"website": "https://polkafoundry.com"
},
},
{
"prefix": 101,
"network": "origintrail-parachain",
"displayName": "OriginTrail Parachain",
"symbols": ["TRAC"],
"decimals": [18],
"standardAccount": "secp256k1",
"website": "https://origintrail.io"
},
{
"prefix": 252,
"network": "social-network",
Expand Down