This commit is contained in:
Jaco Greeff
2019-09-26 10:04:45 +02:00
committed by GitHub
parent aa2625cb2b
commit b197c4bbb7
2 changed files with 4 additions and 2 deletions
+2
View File
@@ -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)
@@ -50,7 +50,7 @@ const CHAIN_INFO: Record<ChainName, ChainData> = {
type: 'Substrate Testnet'
},
kusama: {
chainDisplay: 'Kusama CC1',
chainDisplay: 'Kusama CC2',
logo: 'kusama',
type: 'Polkadot Canary'
}
@@ -82,7 +82,7 @@ const PROVIDERS: Record<ProviderName, PoviderData> = {
w3f: {
providerDisplay: 'Web3 Foundation',
nodes: {
kusama: 'wss://canary-5.kusama.network/'
kusama: 'wss://serinus-5.kusama.network/'
}
}
};