diff --git a/web/src/components/MultisigMembers.tsx b/web/src/components/MultisigMembers.tsx index b8ab627f..141f6b82 100644 --- a/web/src/components/MultisigMembers.tsx +++ b/web/src/components/MultisigMembers.tsx @@ -167,12 +167,12 @@ export const MultisigMembers: React.FC = ({ {multisigAddress && (
- View on Polkadot.js + View on Explorer
diff --git a/web/src/components/PezkuwiWalletButton.tsx b/web/src/components/PezkuwiWalletButton.tsx index 25353e44..c5077669 100644 --- a/web/src/components/PezkuwiWalletButton.tsx +++ b/web/src/components/PezkuwiWalletButton.tsx @@ -91,7 +91,7 @@ export const PezkuwiWalletButton: React.FC = () => { Account Details - Your connected Polkadot account + Your connected Pezkuwi account @@ -123,7 +123,7 @@ export const PezkuwiWalletButton: React.FC = () => {
Source
- {selectedAccount.meta.source || 'polkadot-js'} + {selectedAccount.meta.source || 'pezkuwi'}
@@ -174,29 +174,29 @@ export const PezkuwiWalletButton: React.FC = () => { Connect Wallet - {error && error.includes('install Polkadot.js') && ( + {error && error.includes('extension') && ( {}}> - Install Polkadot.js Extension + Install Pezkuwi Wallet Extension - You need the Polkadot.js browser extension to connect your wallet + You need the Pezkuwi Wallet browser extension to connect your wallet

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

- diff --git a/web/src/components/ReservesDashboard.tsx b/web/src/components/ReservesDashboard.tsx index d1cd50ed..7f579ae7 100644 --- a/web/src/components/ReservesDashboard.tsx +++ b/web/src/components/ReservesDashboard.tsx @@ -245,7 +245,7 @@ export const ReservesDashboard: React.FC = ({

How to Verify Reserves:

    -
  1. Check on-chain wUSDT supply via Polkadot.js Apps
  2. +
  3. Check on-chain wUSDT supply via Pezkuwi Explorer
  4. Verify multisig account balance (if reserves on-chain)
  5. Compare with off-chain treasury (bank/exchange account)
  6. Ensure ratio ≥ 100%
  7. @@ -257,16 +257,16 @@ export const ReservesDashboard: React.FC = ({

    Quick Links:

    - View wUSDT Asset on Polkadot.js + View wUSDT Asset on Explorer = ({ isOpen, onClose, s {txStatus === 'signing' && (

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

    )} diff --git a/web/src/components/admin/CommissionSetupTab.tsx b/web/src/components/admin/CommissionSetupTab.tsx index f7bcfb4e..3603a418 100644 --- a/web/src/components/admin/CommissionSetupTab.tsx +++ b/web/src/components/admin/CommissionSetupTab.tsx @@ -376,11 +376,11 @@ export function CommissionSetupTab() {
    @@ -220,7 +220,7 @@ export const WalletModal: React.FC = ({ isOpen, onClose }) =>
    Source
    - {selectedAccount.meta.source || 'polkadot-js'} + {selectedAccount.meta.source || 'pezkuwi'}
    @@ -230,7 +230,7 @@ export const WalletModal: React.FC = ({ isOpen, onClose }) => - +
    - Don't have Polkadot.js?{' '} + Don't have Pezkuwi Wallet?{' '} , referredAddress); + await initiateReferral(api, { address: account, meta: { source: 'pezkuwi' } } as Record, referredAddress); toast({ title: 'Success!', diff --git a/web/src/pages/Developers.tsx b/web/src/pages/Developers.tsx index 18d830c8..02658e5e 100644 --- a/web/src/pages/Developers.tsx +++ b/web/src/pages/Developers.tsx @@ -49,7 +49,7 @@ const unsub = await api.tx.balances

    Quick Start Guide

    Your first steps to building a dApp on PezkuwiChain.

      -
    1. Install the Polkadot.js extension.
    2. +
    3. Install the Pezkuwi Wallet 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 cf783d28..97ff6608 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 Polkadot.js extension'); + setError('Please select an account from your Pezkuwi Wallet 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('Polkadot.js extension not found. Please install it first.'); + setError('Pezkuwi Wallet 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 Polkadot.js')} + {t('login.connectWallet', 'Connect with Pezkuwi Wallet')}

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

    diff --git a/web/src/pages/Wiki.tsx b/web/src/pages/Wiki.tsx index 7433930f..7677e7c3 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 Polkadot.js', + 'Connecting to the network with Pezkuwi Wallet', 'Understanding the governance process', ];