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

Add PolkaFoundry, PolkaSmith SS58 address #8623

Merged
merged 6 commits into from
Jun 23, 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 @@ -584,6 +584,10 @@ ss58_address_format!(
(77, "manta", "Manta Network, standard account (*25519).")
CalamariAccount =>
(78, "calamari", "Manta Canary Network, standard account (*25519).")
PolkaSmith =>
(98, "polkasmith", "PolkaSmith Canary Network, standard account (*25519).")
PolkaFoundry =>
(99, "polkafoundry", "PolkaFoundry Network, standard account (*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 @@ -505,6 +505,24 @@
"standardAccount": "*25519",
"website": "https://manta.network"
},
{
"prefix": 98,
"network": "polkasmith",
"displayName": "PolkaSmith Canary Network",
"symbols": ["PKS"],
"decimals": [18],
"standardAccount": "*25519",
"website": "https://polkafoundry.com"
},
{
"prefix": 99,
"network": "polkafoundry",
"displayName": "PolkaFoundry Network",
"symbols": ["PKF"],
"decimals": [18],
"standardAccount": "*25519",
"website": "https://polkafoundry.com"
},
{
"prefix": 252,
"network": "social-network",
Expand Down