From 5cb2bc1b8e781c7806b20117016c424dce18cbe6 Mon Sep 17 00:00:00 2001 From: Kurdistan Tech Ministry Date: Thu, 15 Jan 2026 11:43:11 +0300 Subject: [PATCH] Update extension references to Pezkuwi.js - Replace "Pezkuwi Wallet" with "Pezkuwi.js" in extension references - Consistent naming with js.pezkuwichain.io landing page --- web/package.json | 8 ++++---- web/src/components/PezkuwiWalletButton.tsx | 6 +++--- web/src/components/TransferModal.tsx | 2 +- web/src/components/admin/CommissionSetupTab.tsx | 4 ++-- web/src/components/wallet/WalletModal.tsx | 10 +++++----- web/src/pages/Developers.tsx | 2 +- web/src/pages/Login.tsx | 8 ++++---- web/src/pages/Wiki.tsx | 2 +- 8 files changed, 21 insertions(+), 21 deletions(-) diff --git a/web/package.json b/web/package.json index ab0ce0c1..00d56667 100644 --- a/web/package.json +++ b/web/package.json @@ -17,10 +17,10 @@ "dependencies": { "@hookform/resolvers": "^3.9.0", "@pezkuwi/api": "^16.5.9", - "@pezkuwi/extension-dapp": "^0.62.14", - "@pezkuwi/keyring": "^14.0.7", - "@pezkuwi/util": "^14.0.7", - "@pezkuwi/util-crypto": "^14.0.7", + "@pezkuwi/extension-dapp": "^0.62.16", + "@pezkuwi/keyring": "^14.0.11", + "@pezkuwi/util": "^14.0.11", + "@pezkuwi/util-crypto": "^14.0.11", "@radix-ui/react-accordion": "^1.2.0", "@radix-ui/react-alert-dialog": "^1.1.1", "@radix-ui/react-aspect-ratio": "^1.1.0", diff --git a/web/src/components/PezkuwiWalletButton.tsx b/web/src/components/PezkuwiWalletButton.tsx index c5077669..472aa612 100644 --- a/web/src/components/PezkuwiWalletButton.tsx +++ b/web/src/components/PezkuwiWalletButton.tsx @@ -178,15 +178,15 @@ export const PezkuwiWalletButton: React.FC = () => { {}}> - Install Pezkuwi Wallet Extension + Install Pezkuwi.js Extension - You need the Pezkuwi Wallet browser extension to connect your wallet + You need the Pezkuwi.js browser extension to connect your wallet

- The Pezkuwi Wallet extension allows you to manage your accounts and sign transactions securely. + The Pezkuwi.js extension allows you to manage your accounts and sign transactions securely.

diff --git a/web/src/components/TransferModal.tsx b/web/src/components/TransferModal.tsx index af09ad02..6622b128 100644 --- a/web/src/components/TransferModal.tsx +++ b/web/src/components/TransferModal.tsx @@ -310,7 +310,7 @@ export const TransferModal: React.FC = ({ isOpen, onClose, s {txStatus === 'signing' && (

- Please sign the transaction in your Pezkuwi Wallet extension + Please sign the transaction in your Pezkuwi.js extension

)} diff --git a/web/src/components/admin/CommissionSetupTab.tsx b/web/src/components/admin/CommissionSetupTab.tsx index 3603a418..d146d06e 100644 --- a/web/src/components/admin/CommissionSetupTab.tsx +++ b/web/src/components/admin/CommissionSetupTab.tsx @@ -376,11 +376,11 @@ export function CommissionSetupTab() {
@@ -306,11 +306,11 @@ export const WalletModal: React.FC = ({ isOpen, onClose }) => className="w-full bg-gradient-to-r from-purple-600 to-cyan-400 hover:from-purple-700 hover:to-cyan-500" > - Connect Pezkuwi Wallet + Connect Pezkuwi.js
- Don't have Pezkuwi Wallet?{' '} + Don't have Pezkuwi.js?{' '} Quick Start Guide

Your first steps to building a dApp on PezkuwiChain.

    -
  1. Install the Pezkuwi Wallet extension.
  2. +
  3. Install the Pezkuwi.js extension.
  4. Get some testnet HEZ from the Faucet.
  5. Clone a starter project from our GitHub.
  6. Start building!
diff --git a/web/src/pages/Login.tsx b/web/src/pages/Login.tsx index 97ff6608..315807b1 100644 --- a/web/src/pages/Login.tsx +++ b/web/src/pages/Login.tsx @@ -105,13 +105,13 @@ const Login: React.FC = () => { if (selectedAccount) { navigate('/'); } else { - setError('Please select an account from your Pezkuwi Wallet extension'); + setError('Please select an account from your Pezkuwi.js extension'); } } catch (err) { if (import.meta.env.DEV) console.error('Wallet connection failed:', err); const errorMsg = err instanceof Error ? err.message : ''; if (errorMsg?.includes('extension')) { - setError('Pezkuwi Wallet extension not found. Please install it first.'); + setError('Pezkuwi.js extension not found. Please install it first.'); } else { setError('Failed to connect wallet. Please try again.'); } @@ -366,11 +366,11 @@ const Login: React.FC = () => { disabled={loading} > - {t('login.connectWallet', 'Connect with Pezkuwi Wallet')} + {t('login.connectWallet', 'Connect with Pezkuwi.js')}

- {t('login.walletHint', 'Connect your Pezkuwi Wallet for instant access')} + {t('login.walletHint', 'Connect your Pezkuwi.js for instant access')}

diff --git a/web/src/pages/Wiki.tsx b/web/src/pages/Wiki.tsx index 7677e7c3..ad18b7b5 100644 --- a/web/src/pages/Wiki.tsx +++ b/web/src/pages/Wiki.tsx @@ -16,7 +16,7 @@ const Wiki: React.FC = () => { const popularArticles = [ 'How to become a validator', 'PezkuwiChain tokenomics explained', - 'Connecting to the network with Pezkuwi Wallet', + 'Connecting to the network with Pezkuwi.js', 'Understanding the governance process', ];