Skip to content

Commit

Permalink
Merge pull request #4725 from Giveth/multisig-hotfix
Browse files Browse the repository at this point in the history
Hotifx: adding gnosis safe back to connectors
  • Loading branch information
mateodaza authored Sep 11, 2024
2 parents f1e5c87 + 75e9749 commit 5894a46
Show file tree
Hide file tree
Showing 3 changed files with 276 additions and 203 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"@tanstack/react-query": "^5.45.1",
"@vercel/speed-insights": "^1.0.9",
"@web3auth/sign-in-with-solana": "^3.0.0",
"@web3modal/wagmi": "^5.0.7",
"@web3modal/wagmi": "^5.1.7",
"apollo-upload-client": "^18.0.1",
"base58": "^2.0.1",
"bignumber.js": "^9.1.2",
Expand Down Expand Up @@ -72,7 +72,7 @@
"swiper": "^11.1.3",
"unsplash-js": "^7.0.19",
"viem": "^2.16.1",
"wagmi": "^2.11.3"
"wagmi": "^2.12.10"
},
"devDependencies": {
"@babel/preset-typescript": "^7.23.3",
Expand Down
5 changes: 4 additions & 1 deletion src/wagmiConfigs.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { cookieStorage, createConfig, createStorage } from 'wagmi';
import { walletConnect, coinbaseWallet } from '@wagmi/connectors';
import { walletConnect, coinbaseWallet, safe } from '@wagmi/connectors';

import { createClient, http } from 'viem';
import configuration from './configuration';
Expand Down Expand Up @@ -28,6 +28,9 @@ export const wagmiConfig = createConfig({
metadata,
}),
coinbaseWallet({ appName: 'Giveth', version: '3' }),
safe({
allowedDomains: [/app.safe.global$/],
}),
],
ssr: true,
storage: createStorage({
Expand Down
Loading

0 comments on commit 5894a46

Please sign in to comment.