feat: add HEZ/DOT pool support and fix user-facing token names

- Add HEZ/DOT pool to PoolDashboard
- Display DOT, ETH, BTC instead of wDOT, wETH, wBTC to users
- Update priceOracle with correct symbol mappings
- Fix lint errors in check_all_pools.mjs
- Extract MINTABLE_ASSETS to separate file for fast refresh
This commit is contained in:
2026-02-06 11:06:28 +03:00
parent 884d68714b
commit 842dc9d8c2
7 changed files with 159 additions and 61 deletions
+3 -4
View File
@@ -7,10 +7,9 @@ const COINGECKO_API = 'https://api.coingecko.com/api/v3';
// CoinGecko ID mappings
export const COINGECKO_IDS: Record<string, string> = {
'wDOT': 'polkadot',
'wETH': 'ethereum',
'wBTC': 'bitcoin',
'wUSDT': 'tether',
'DOT': 'polkadot',
'ETH': 'ethereum',
'BTC': 'bitcoin',
'USDT': 'tether',
};