This commit is contained in:
2026-06-01 23:28:57 +03:00
parent 895bec2a50
commit b86f3209f5
22 changed files with 1036 additions and 269 deletions

View File

@@ -1,4 +1,5 @@
import { COIN_ICONS } from '@shared/assets/coins'
import type { Chain } from '@features/wallet'
export interface Token {
ticker: string
@@ -10,6 +11,10 @@ export interface Token {
bal: string
usd: string
fav: boolean
/** Stable unique key — tickers can repeat across chains (e.g. USDT on ETH/TRX/BSC). */
id?: string
/** Network this row belongs to — used to target send/receive modals. */
chain?: Chain
}
export const TOKENS: readonly Token[] = [