mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-04-22 18:17:58 +00:00
Update token symbol from PZKW/PZK to HEZ across all components
Changed all references to the project token from PZKW/PZK to HEZ: - DelegationManager.tsx: Updated token symbol in comments, delegate cards, and user delegations - DelegateProfile.tsx: Updated min/max delegation placeholders and display - ProposalWizard.tsx: Updated budget input placeholder and review display - TreasuryOverview.tsx: Updated treasury balance display - TransactionModal.tsx: Updated send transaction title, description, and amount label - WalletButton.tsx: Updated balance display in button and dropdown All components now consistently use HEZ as the token symbol.
This commit is contained in:
@@ -94,11 +94,11 @@ export const TransactionModal: React.FC<TransactionModalProps> = ({
|
||||
<DialogHeader>
|
||||
<DialogTitle className="flex items-center gap-2">
|
||||
<Send className="h-5 w-5 text-kesk" />
|
||||
{type === 'send' ? 'Send PZK' : type === 'vote' ? 'Cast Vote' : 'Delegate Voting Power'}
|
||||
{type === 'send' ? 'Send HEZ' : type === 'vote' ? 'Cast Vote' : 'Delegate Voting Power'}
|
||||
</DialogTitle>
|
||||
<DialogDescription>
|
||||
{type === 'send'
|
||||
? 'Send PZK tokens to another address'
|
||||
{type === 'send'
|
||||
? 'Send HEZ tokens to another address'
|
||||
: type === 'vote'
|
||||
? 'Submit your vote for the proposal'
|
||||
: 'Delegate your voting power to another address'}
|
||||
@@ -120,7 +120,7 @@ export const TransactionModal: React.FC<TransactionModalProps> = ({
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
<Label htmlFor="amount">Amount (PZK)</Label>
|
||||
<Label htmlFor="amount">Amount (HEZ)</Label>
|
||||
<Input
|
||||
id="amount"
|
||||
type="number"
|
||||
|
||||
Reference in New Issue
Block a user