From 9c11295d73a8130931999538661a31044e0e1641 Mon Sep 17 00:00:00 2001 From: Lezek123 Date: Wed, 21 May 2025 09:26:00 +0200 Subject: [PATCH 1/2] Update mainnet RPC endpoint --- docs/operator-guide.md | 2 +- packages/atlas/src/.env | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/operator-guide.md b/docs/operator-guide.md index e7217579bd..17aeda52a1 100644 --- a/docs/operator-guide.md +++ b/docs/operator-guide.md @@ -252,7 +252,7 @@ Query Node (QN) is a service that processes blockchain events and stores them in ### RPC Node -RPC nodes are Joystream blockchain nodes that are responsible for running the network. Whether you need your own instance of RPC node depends on your setup. If you are running your own QN, you probably also want to run RPC node alongside for speed of synching and indexing. If you make that RPC endpoint public, you can pass it as `VITE_PRODUCTION_NODE_URL` environment variable, meaning that all user-initiated transactions would be sent to your RPC node. However, you can also use a publicly available node, like `wss://rpc.joystream.org:9944`. +RPC nodes are Joystream blockchain nodes that are responsible for running the network. Whether you need your own instance of RPC node depends on your setup. If you are running your own QN, you probably also want to run RPC node alongside for speed of synching and indexing. If you make that RPC endpoint public, you can pass it as `VITE_PRODUCTION_NODE_URL` environment variable, meaning that all user-initiated transactions would be sent to your RPC node. However, you can also use a publicly available node, like `wss://rpc.joystream.org`. ### Member faucet diff --git a/packages/atlas/src/.env b/packages/atlas/src/.env index c2bec199a5..40f31d0939 100644 --- a/packages/atlas/src/.env +++ b/packages/atlas/src/.env @@ -36,7 +36,7 @@ VITE_VWO_ACCOUNT_ID= VITE_PRODUCTION_ORION_AUTH_URL=https://auth.gleev.xyz/api/v1 VITE_PRODUCTION_ORION_URL=https://orion.gleev.xyz/graphql VITE_PRODUCTION_QUERY_NODE_SUBSCRIPTION_URL=wss://orion.joystream.org/graphql -VITE_PRODUCTION_NODE_URL=wss://rpc.joystream.org:9944 +VITE_PRODUCTION_NODE_URL=wss://rpc.joystream.org VITE_PRODUCTION_FAUCET_URL=https://faucet.joystream.org/member-faucet/register VITE_PRODUCTION_YPP_FAUCET_URL=https://18.184.136.237.nip.io/membership From 57ccf6366196c46346e31d94290607ae56933a69 Mon Sep 17 00:00:00 2001 From: Lezek123 Date: Wed, 21 May 2025 09:29:55 +0200 Subject: [PATCH 2/2] Bump version and update CHANGELOG --- CHANGELOG.md | 6 ++++++ package.json | 2 +- packages/atlas/package.json | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f8173a288..0ebfe6f735 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [5.6.2] - 2026-05-21 + +### Fixed + +- Updated mainnet RPC endpoint from `wss://rpc.joystream.org:9944` to `wss://rpc.joystream.org` + ## [5.6.1] - 2026-05-09 ### Fixed diff --git a/package.json b/package.json index 8fa654b700..b7864013e4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "description": "UI for consuming Joystream - a user governed video platform", - "version": "5.6.1", + "version": "5.6.2", "license": "GPL-3.0", "workspaces": [ "packages/*" diff --git a/packages/atlas/package.json b/packages/atlas/package.json index fd21f46037..c6d0632b24 100644 --- a/packages/atlas/package.json +++ b/packages/atlas/package.json @@ -1,7 +1,7 @@ { "name": "@joystream/atlas", "description": "UI for consuming Joystream - a user governed video platform", - "version": "5.6.1", + "version": "5.6.2", "license": "GPL-3.0", "scripts": { "start": "vite",