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 6ecc599 commit 6ca88ceCopy full SHA for 6ca88ce
packages/sdk/src/config.ts
@@ -49,9 +49,9 @@ export const METHODS_TO_REDIRECT: { [method: string]: boolean } = {
49
[RPC_METHODS.METAMASK_OPEN]: true,
50
};
51
52
-export const lcAnalyticsRPCs = Object.keys(METHODS_TO_REDIRECT).map((method) =>
53
- method.toLowerCase(),
54
-);
+export const lcAnalyticsRPCs = Object.keys(METHODS_TO_REDIRECT)
+ .filter((method) => METHODS_TO_REDIRECT[method] === true)
+ .map((method) => method.toLowerCase());
55
56
// unsupported extension connectWith methods
57
export const rpcWithAccountParam = [
0 commit comments