diff --git a/package.json b/package.json index 6852195..6a7ef0b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pezkuwi-telegram-miniapp", - "version": "1.0.230", + "version": "1.0.232", "type": "module", "description": "Pezkuwichain Telegram Mini App - Forum, Announcements, Rewards", "author": "Pezkuwichain Team", diff --git a/src/components/wallet/TokensCard.tsx b/src/components/wallet/TokensCard.tsx index e3f6c96..2cfdea5 100644 --- a/src/components/wallet/TokensCard.tsx +++ b/src/components/wallet/TokensCard.tsx @@ -76,6 +76,7 @@ interface TokenConfig { logo: string; isDefault: boolean; priority: number; // Lower = higher in list + standard?: 'PEZ-20'; // fungible Asset Hub asset → PEZ-20 token standard } const DEFAULT_TOKENS: TokenConfig[] = [ @@ -98,6 +99,7 @@ const DEFAULT_TOKENS: TokenConfig[] = [ logo: '/tokens/PEZ.png', isDefault: true, priority: 1, + standard: 'PEZ-20', }, { assetId: ASSET_IDS.WUSDT, @@ -108,6 +110,7 @@ const DEFAULT_TOKENS: TokenConfig[] = [ logo: '/tokens/USDT.png', isDefault: true, priority: 2, + standard: 'PEZ-20', }, { assetId: ASSET_IDS.DOT, @@ -838,6 +841,18 @@ export function TokensCard({ onSendToken }: Props) {
{token.displaySymbol} + {token.standard === 'PEZ-20' && ( + e.stopPropagation()} + title="PEZ-20 token standard on Pezkuwi Asset Hub" + className="text-[10px] bg-blue-500/20 text-blue-300 px-1.5 py-0.5 rounded no-underline" + > + PEZ-20 + + )} {token.assetId <= -100 && ( LP diff --git a/src/version.json b/src/version.json index 1a9fb87..c2215da 100644 --- a/src/version.json +++ b/src/version.json @@ -1,5 +1,5 @@ { - "version": "1.0.230", - "buildTime": "2026-02-27T23:33:39.279Z", - "buildNumber": 1772235219280 + "version": "1.0.232", + "buildTime": "2026-06-13T04:39:01.749Z", + "buildNumber": 1781325541749 }