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 82e7f02 commit 33af945Copy full SHA for 33af945
packages/thirdweb/src/wallets/wallet-connect/receiver/index.ts
@@ -167,7 +167,9 @@ export async function createWalletConnectClient(
167
} = options;
168
const chains = (() => {
169
if (options.chains && options.chains.length > 10) {
170
- console.warn("WalletConnect: Can specify no more than 10 chains, truncating to the first 10 provided chains...");
+ console.warn(
171
+ "WalletConnect: Can specify no more than 10 chains, truncating to the first 10 provided chains...",
172
+ );
173
return options.chains.slice(0, 10);
174
}
175
return options.chains;
0 commit comments