From 39a5147fb89e7dc3fd359ccfc814a782eeaebc47 Mon Sep 17 00:00:00 2001 From: Jaco Greeff Date: Tue, 30 Jul 2019 16:33:02 +0200 Subject: [PATCH] Swap name of hosted Parity Substrate node (-> FF) (#171) --- packages/ui-settings/src/defaults.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/ui-settings/src/defaults.ts b/packages/ui-settings/src/defaults.ts index 0f0bae96..19bb5495 100644 --- a/packages/ui-settings/src/defaults.ts +++ b/packages/ui-settings/src/defaults.ts @@ -13,7 +13,7 @@ const WSS_NODES = { hosted: 'hosted by Parity', nodes: { alex: 'wss://poc3-rpc.polkadot.io/', - elm: 'wss://substrate-rpc.parity.io/' + fir: 'wss://substrate-rpc.parity.io/' } }, unfra: { @@ -34,7 +34,7 @@ const CRYPTOS: Options = [ const ENDPOINTS: Options = [ { text: `Alexander (Polkadot, ${WSS_NODES.parity.hosted})`, value: WSS_NODES.parity.nodes.alex }, { text: `Alexander (Polkadot, ${WSS_NODES.unfra.hosted})`, value: WSS_NODES.unfra.nodes.alex }, - { text: `Emberic Elm (Substrate, ${WSS_NODES.parity.hosted})`, value: WSS_NODES.parity.nodes.elm }, + { text: `Flaming Fir (Substrate, ${WSS_NODES.parity.hosted})`, value: WSS_NODES.parity.nodes.fir }, { text: 'Local Node (127.0.0.1:9944)', value: 'ws://127.0.0.1:9944/' } ]; @@ -66,7 +66,7 @@ const UITHEMES: Options = [ const ENDPOINT_DEFAULT = isPolkadot ? WSS_NODES.parity.nodes.alex - : WSS_NODES.parity.nodes.elm; + : WSS_NODES.parity.nodes.fir; const PREFIX_DEFAULT = -1;