@@ -24,20 +24,20 @@ import toast from "react-hot-toast";
2424
2525// Chain ID to name mapping
2626const CHAIN_NAMES : Record < SupportedChainId , string > = {
27- 137 : "Polygon" ,
28- 534351 : "Scroll Sepolia" ,
27+ // 137: "Polygon",
28+ // 534351: "Scroll Sepolia",
2929 5115 : "Citrea Testnet" ,
30- 61 : "Ethereum Classic" ,
31- 8453 : "Base Mainnet" ,
30+ // 61: "Ethereum Classic",
31+ // 8453: "Base Mainnet",
3232} ;
3333
3434// Chain colors for visual distinction
3535const CHAIN_COLORS : Record < SupportedChainId , string > = {
36- 137 : "bg-purple-500" ,
37- 534351 : "bg-orange-500" ,
36+ // 137: "bg-purple-500",
37+ // 534351: "bg-orange-500",
3838 5115 : "bg-yellow-500" ,
39- 61 : "bg-green-500" ,
40- 8453 : "bg-blue-500" ,
39+ // 61: "bg-green-500",
40+ // 8453: "bg-blue-500",
4141} ;
4242
4343interface CatDetails {
@@ -60,7 +60,8 @@ interface PaginationInfo {
6060const isValidChainId = (
6161 chainId : number | string
6262) : chainId is SupportedChainId => {
63- const validChainIds : SupportedChainId [ ] = [ 137 , 534351 , 5115 , 61 , 8453 ] ;
63+ // const validChainIds: SupportedChainId[] = [137, 534351, 5115, 61, 8453];
64+ const validChainIds : SupportedChainId [ ] = [ 5115 ] ;
6465 return validChainIds . includes ( Number ( chainId ) as SupportedChainId ) ;
6566} ;
6667
0 commit comments