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 197e72a commit fe61574Copy full SHA for fe61574
src/config/config.ts
@@ -58,7 +58,9 @@ export const getChainConfig = (
58
}
59
60
if (config.isExperimental && !options?.allowExperimentalNetworks) {
61
- throw new Error(`Experimental network ${chainId} is not allowed. Use allowExperimentalNetworks option to enable it.`);
+ throw new Error(
62
+ `Experimental network ${chainId} is not allowed. Use allowExperimentalNetworks option to enable it.`
63
+ );
64
65
66
return config;
0 commit comments