fix: correct RPC endpoints - remove wrong :9944 port

This commit is contained in:
2026-02-04 12:35:42 +03:00
parent 91e14bf200
commit ca3709e8ef
3 changed files with 4 additions and 6 deletions
+2 -3
View File
@@ -62,10 +62,9 @@ jobs:
working-directory: ./web working-directory: ./web
run: npm run build run: npm run build
env: env:
VITE_NETWORK: BETA VITE_NETWORK: MAINNET
VITE_WS_ENDPOINT: wss://rpc.pezkuwichain.io:9944 VITE_WS_ENDPOINT: wss://rpc.pezkuwichain.io
VITE_WS_ENDPOINT_FALLBACK_1: wss://mainnet.pezkuwichain.io VITE_WS_ENDPOINT_FALLBACK_1: wss://mainnet.pezkuwichain.io
VITE_WS_ENDPOINT_FALLBACK_2: wss://beta.pezkuwichain.io
VITE_ASSET_HUB_ENDPOINT: wss://asset-hub-rpc.pezkuwichain.io VITE_ASSET_HUB_ENDPOINT: wss://asset-hub-rpc.pezkuwichain.io
VITE_PEOPLE_CHAIN_ENDPOINT: wss://people-rpc.pezkuwichain.io VITE_PEOPLE_CHAIN_ENDPOINT: wss://people-rpc.pezkuwichain.io
+1 -1
View File
@@ -28,7 +28,7 @@ export const NETWORK_ENDPOINTS: Record<string, NetworkConfig> = {
BETA: { BETA: {
name: 'Pezkuwi Beta Testnet', name: 'Pezkuwi Beta Testnet',
endpoint: 'https://rpc.pezkuwichain.io', endpoint: 'https://rpc.pezkuwichain.io',
wsEndpoint: 'wss://rpc.pezkuwichain.io:9944', wsEndpoint: 'wss://rpc.pezkuwichain.io',
type: 'production', type: 'production',
description: 'Beta testnet - Currently active for testing', description: 'Beta testnet - Currently active for testing',
}, },
+1 -2
View File
@@ -67,9 +67,8 @@ export const PezkuwiProvider: React.FC<PezkuwiProviderProps> = ({
useEffect(() => { useEffect(() => {
// Hardcoded production fallbacks ensure app works even if env vars are missing // Hardcoded production fallbacks ensure app works even if env vars are missing
const PRODUCTION_FALLBACKS = [ const PRODUCTION_FALLBACKS = [
'wss://rpc.pezkuwichain.io:9944', 'wss://rpc.pezkuwichain.io',
'wss://mainnet.pezkuwichain.io', 'wss://mainnet.pezkuwichain.io',
'wss://beta.pezkuwichain.io',
]; ];
const FALLBACK_ENDPOINTS = [ const FALLBACK_ENDPOINTS = [