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);