Skip to content

Commit

Permalink
Merge branch 'main' into feature/add-attribution-workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptodev-2s authored Jun 5, 2024
2 parents 3bca5bd + b9bfc7c commit 4732cfd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
8 changes: 1 addition & 7 deletions app/core/WalletConnect/WalletConnectV2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -373,13 +373,7 @@ class WalletConnect2Session {
let method = requestEvent.params.request.method;
const chainId = parseInt(requestEvent.params.chainId);

const beforeMethodParams = requestEvent.params.request.params as any;
// Replace blockExplorerUrls with blockExplorerUrl
const methodParams = {
...beforeMethodParams,
// blockExplorerUrl: beforeMethodParams.blockExplorerUrls,
// test: 'test',
};
const methodParams = requestEvent.params.request.params as any;

DevLogger.log(
`WalletConnect2Session::handleRequest chainId=${chainId} method=${method}`,
Expand Down
12 changes: 10 additions & 2 deletions ios/MetaMask.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1487,7 +1487,11 @@
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
OTHER_LDFLAGS = "$(inherited)";
OTHER_LDFLAGS = (
"$(inherited)",
"-Wl",
"-ld_classic",
);
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
SDKROOT = iphoneos;
};
Expand Down Expand Up @@ -1529,7 +1533,11 @@
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
MTL_ENABLE_DEBUG_INFO = NO;
OTHER_LDFLAGS = "$(inherited)";
OTHER_LDFLAGS = (
"$(inherited)",
"-Wl",
"-ld_classic",
);
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
SDKROOT = iphoneos;
VALIDATE_PRODUCT = YES;
Expand Down

0 comments on commit 4732cfd

Please sign in to comment.