From 6c1fa9f1bf701bfa0f4c50b7f26ba7f52147d072 Mon Sep 17 00:00:00 2001 From: Kurdistan Tech Ministry Date: Sat, 1 Nov 2025 16:24:07 +0300 Subject: [PATCH] chore: Switch to beta testnet endpoint MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Changed default endpoint from ws://127.0.0.1:9944 to wss://beta.pezkuwichain.io - Preparing for multi-validator beta testnet deployment 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/contexts/PolkadotContext.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/contexts/PolkadotContext.tsx b/src/contexts/PolkadotContext.tsx index 8854575d..53280aa7 100644 --- a/src/contexts/PolkadotContext.tsx +++ b/src/contexts/PolkadotContext.tsx @@ -21,9 +21,9 @@ interface PolkadotProviderProps { endpoint?: string; } -export const PolkadotProvider: React.FC = ({ - children, - endpoint = 'ws://127.0.0.1:9944' // Local testnet RPC +export const PolkadotProvider: React.FC = ({ + children, + endpoint = 'wss://beta.pezkuwichain.io' // Beta testnet RPC }) => { const [api, setApi] = useState(null); const [isApiReady, setIsApiReady] = useState(false);