fix: add DEVELOPMENT endpoint alias and change Total text to Toplam

This commit is contained in:
2026-02-04 22:11:25 +03:00
parent 089e4918f1
commit 6d0437a3af
2 changed files with 11 additions and 2 deletions
+9
View File
@@ -68,6 +68,15 @@ export const NETWORK_ENDPOINTS: Record<string, NetworkConfig> = {
type: 'development',
description: 'Local development node',
},
// Development alias (maps to BETA for live testing)
DEVELOPMENT: {
name: 'Pezkuwi Beta Testnet',
endpoint: 'https://rpc.pezkuwichain.io',
wsEndpoint: 'wss://rpc.pezkuwichain.io',
type: 'development',
description: 'Development mode connecting to Beta testnet for live testing',
},
};
/**