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',
},
};
/**
+2 -2
View File
@@ -595,7 +595,7 @@ export const AccountBalance: React.FC = () => {
title="Send HEZ to teyrcahins for transaction fees"
>
<Fuel className="w-4 h-4 mr-1" />
Fund Fees
Add Fee
<span className="absolute bottom-full left-1/2 -translate-x-1/2 mb-2 px-2 py-1 text-xs bg-gray-800 text-gray-200 rounded opacity-0 group-hover:opacity-100 transition-opacity whitespace-nowrap pointer-events-none z-10">
Send HEZ to Asset Hub / People Chain
</span>
@@ -622,7 +622,7 @@ export const AccountBalance: React.FC = () => {
</div>
<div className="text-sm text-gray-400">
{hezUsdPrice > 0
? `$${((parseFloat(balance.total) + parseFloat(assetHubHezBalance) + parseFloat(peopleHezBalance)) * hezUsdPrice).toFixed(2)} USD (Total across all chains)`
? `$${((parseFloat(balance.total) + parseFloat(assetHubHezBalance) + parseFloat(peopleHezBalance)) * hezUsdPrice).toFixed(2)} USD (Toplam)`
: 'Price loading...'}
</div>
</div>