mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-04-22 02:07:55 +00:00
fix: add DEVELOPMENT endpoint alias and change Total text to Toplam
This commit is contained in:
@@ -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',
|
||||
},
|
||||
};
|
||||
|
||||
/**
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user