From 077c48030feae184e5cb23605ee80704ca1269fe Mon Sep 17 00:00:00 2001 From: frank <450595468@qq.com> Date: Tue, 9 Feb 2021 21:57:41 +0800 Subject: [PATCH] Add Ares SS58 address type (#8061) --- primitives/core/src/crypto.rs | 2 ++ ss58-registry.json | 9 +++++++++ 2 files changed, 11 insertions(+) diff --git a/primitives/core/src/crypto.rs b/primitives/core/src/crypto.rs index 2bd9f5f52e2a6..7608b295e33fc 100644 --- a/primitives/core/src/crypto.rs +++ b/primitives/core/src/crypto.rs @@ -554,6 +554,8 @@ ss58_address_format!( (32, "robonomics", "Any Robonomics network standard account (*25519).") DataHighwayAccount => (33, "datahighway", "DataHighway mainnet, standard account (*25519).") + AresAccount => + (34, "ares", "Ares Protocol, standard account (*25519).") ValiuAccount => (35, "vln", "Valiu Liquidity Network mainnet, standard account (*25519).") CentrifugeAccount => diff --git a/ss58-registry.json b/ss58-registry.json index 1acf35803783b..bb11a51b43583 100644 --- a/ss58-registry.json +++ b/ss58-registry.json @@ -316,6 +316,15 @@ "standardAccount": "*25519", "website": null }, + { + "prefix": 34, + "network": "ares", + "displayName": "Ares Protocol", + "symbols": ["ARES"], + "decimals": [12], + "standardAccount": "*25519", + "website": "https://www.aresprotocol.com/" + }, { "prefix": 35, "network": "vln",