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.
2 parents bf97845 + bc0d554 commit 09d43d3Copy full SHA for 09d43d3
app/utils/silkEIP6963.ts
@@ -148,10 +148,13 @@ export function requestProviders(callback: (providerDetail: EIP6963ProviderDetai
148
*/
149
export function initSilkWithEIP6963(silkProvider: SilkEthereumProviderInterface): () => void {
150
// Announce the provider via EIP-6963
151
- const cleanup = announceSilkProvider(silkProvider);
+ // const cleanup = announceSilkProvider(silkProvider);
152
153
// Don't assign to window.ethereum - let users connect via EIP-6963 discovery
154
// This prevents conflicts with other wallets
155
156
- return cleanup;
+ // return cleanup;
157
+
158
+ // Return empty cleanup function since we're not announcing the provider
159
+ return () => {};
160
}
0 commit comments