There was an error while loading. Please reload this page.
1 parent 4c3f41a commit e6461a6Copy full SHA for e6461a6
1 file changed
src/modules/dashboard/lists/constants.ts
@@ -1,10 +1,6 @@
1
import { CustomMarket } from 'src/ui-config/marketsConfig';
2
3
-export const HIDDEN_ASSETS: Partial<Record<CustomMarket, string[]>> = {
4
- [CustomMarket.proto_horizon_v3]: [
5
- '0x136471a34f6ef19fe571effc1ca711fdb8e49f2b'.toLowerCase(), // USYC
6
- ],
7
-};
+export const HIDDEN_ASSETS: Partial<Record<CustomMarket, string[]>> = {};
8
9
export const isAssetHidden = (market: CustomMarket, underlyingAsset: string) => {
10
return HIDDEN_ASSETS[market]?.includes(underlyingAsset.toLowerCase());
0 commit comments