We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee224ad commit 3776b54Copy full SHA for 3776b54
src/modules/dashboard/lists/constants.ts
@@ -1,6 +1,10 @@
1
import { CustomMarket } from 'src/ui-config/marketsConfig';
2
3
-export const HIDDEN_ASSETS: Partial<Record<CustomMarket, string[]>> = {};
+export const HIDDEN_ASSETS: Partial<Record<CustomMarket, string[]>> = {
4
+ [CustomMarket.proto_horizon_v3]: [
5
+ '0x2255718832bc9fd3be1caf75084f4803da14ff01'.toLowerCase(), // VBILL
6
+ ],
7
+};
8
9
export const isAssetHidden = (market: CustomMarket, underlyingAsset: string) => {
10
return HIDDEN_ASSETS[market]?.includes(underlyingAsset.toLowerCase());
0 commit comments