From b197c4bbb76b15c8fed5134e4405af70d53c73ea Mon Sep 17 00:00:00 2001 From: Jaco Greeff Date: Thu, 26 Sep 2019 10:04:45 +0200 Subject: [PATCH] CC2 (#216) --- CHANGELOG.md | 2 ++ packages/ui-settings/src/defaults/endpoints.ts | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eeb83bc1..202555c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # 0.45.0-beta.x +- Support for Kusama CC2 - **Breaking change** The subscription subject for `ui-keyring` does not return a pre-formatted React object anymore. This is SUI-specific, so had limited use and therefore should not even be split into a `react-keyring` component. Rather users of this functionality should construct their own options for their framework. +- Experimental support for signing via Ledger HW - Add specific settings for the icon type to `ui-settings` - Add Edgeware live RPC endpoints to `ui-settings` - Adjust `react-identicon` highlights (validators) diff --git a/packages/ui-settings/src/defaults/endpoints.ts b/packages/ui-settings/src/defaults/endpoints.ts index c8e306d8..e1776843 100644 --- a/packages/ui-settings/src/defaults/endpoints.ts +++ b/packages/ui-settings/src/defaults/endpoints.ts @@ -50,7 +50,7 @@ const CHAIN_INFO: Record = { type: 'Substrate Testnet' }, kusama: { - chainDisplay: 'Kusama CC1', + chainDisplay: 'Kusama CC2', logo: 'kusama', type: 'Polkadot Canary' } @@ -82,7 +82,7 @@ const PROVIDERS: Record = { w3f: { providerDisplay: 'Web3 Foundation', nodes: { - kusama: 'wss://canary-5.kusama.network/' + kusama: 'wss://serinus-5.kusama.network/' } } };