Skip to content

Commit 3776b54

Browse files
committed
chore: hidden asset
1 parent ee224ad commit 3776b54

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/modules/dashboard/lists/constants.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
import { CustomMarket } from 'src/ui-config/marketsConfig';
22

3-
export const HIDDEN_ASSETS: Partial<Record<CustomMarket, string[]>> = {};
3+
export const HIDDEN_ASSETS: Partial<Record<CustomMarket, string[]>> = {
4+
[CustomMarket.proto_horizon_v3]: [
5+
'0x2255718832bc9fd3be1caf75084f4803da14ff01'.toLowerCase(), // VBILL
6+
],
7+
};
48

59
export const isAssetHidden = (market: CustomMarket, underlyingAsset: string) => {
610
return HIDDEN_ASSETS[market]?.includes(underlyingAsset.toLowerCase());

0 commit comments

Comments
 (0)