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 e102e6b commit 3a5afe9Copy full SHA for 3a5afe9
packages/common/src/index.ts
@@ -478,14 +478,15 @@ export function isChainIdSupported(chainId: number) {
478
}
479
480
export function isLitUnavailable(chainId: number) {
481
- return [
482
- 4201, // LUKSO_TESTNET,
483
- 42, // LUKSO,
484
- 713715, // SEI_DEVNET,
485
- 1329, // SEI_MAINNET,
486
- 1088, // METIS
487
- ].includes(chainId);
+ return true;
+ // return [
+ // 4201, // LUKSO_TESTNET,
+ // 42, // LUKSO,
+ // 713715, // SEI_DEVNET,
+ // 1329, // SEI_MAINNET,
+ // 1088, // METIS
488
+ // ].includes(chainId);
489
490
491
export * from "./chains";
-export * from "./programWhitelist";
492
+export * from "./programWhitelist";
0 commit comments