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) {