mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-06-19 17:31:03 +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',
|
type: 'development',
|
||||||
description: 'Local development node',
|
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"
|
title="Send HEZ to teyrcahins for transaction fees"
|
||||||
>
|
>
|
||||||
<Fuel className="w-4 h-4 mr-1" />
|
<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">
|
<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
|
Send HEZ to Asset Hub / People Chain
|
||||||
</span>
|
</span>
|
||||||
@@ -622,7 +622,7 @@ export const AccountBalance: React.FC = () => {
|
|||||||
</div>
|
</div>
|
||||||
<div className="text-sm text-gray-400">
|
<div className="text-sm text-gray-400">
|
||||||
{hezUsdPrice > 0
|
{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...'}
|
: 'Price loading...'}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user