From 6d0437a3af2a907a608cd01a841938a31df96f83 Mon Sep 17 00:00:00 2001 From: Kurdistan Tech Ministry Date: Wed, 4 Feb 2026 22:11:25 +0300 Subject: [PATCH] fix: add DEVELOPMENT endpoint alias and change Total text to Toplam --- shared/blockchain/endpoints.ts | 9 +++++++++ web/src/components/AccountBalance.tsx | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/shared/blockchain/endpoints.ts b/shared/blockchain/endpoints.ts index 299afe0e..a9d5c28b 100644 --- a/shared/blockchain/endpoints.ts +++ b/shared/blockchain/endpoints.ts @@ -68,6 +68,15 @@ export const NETWORK_ENDPOINTS: Record = { 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', + }, }; /** diff --git a/web/src/components/AccountBalance.tsx b/web/src/components/AccountBalance.tsx index db1c63ef..7ec22fd4 100644 --- a/web/src/components/AccountBalance.tsx +++ b/web/src/components/AccountBalance.tsx @@ -595,7 +595,7 @@ export const AccountBalance: React.FC = () => { title="Send HEZ to teyrcahins for transaction fees" > - Fund Fees + Add Fee Send HEZ to Asset Hub / People Chain @@ -622,7 +622,7 @@ export const AccountBalance: React.FC = () => {
{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...'}