Skip to content

Commit 9fc413f

Browse files
authoredFeb 7, 2025··
Fix "other wallets" integration (#1954)
* use walletconnect project ID * changeset
1 parent af4513f commit 9fc413f

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed
 

‎.changeset/witty-teachers-smell.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@graphprotocol/graph-cli': patch
3+
---
4+
5+
fix bug with "other wallets" not working #1900

‎website/.env.example

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
VITE_WALLETCONNECT_PROJECT_ID=<WALLETCONNECT_PROJECT_ID>

‎website/src/components/wallet-provider.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const config = createConfig(
1313
[arbitrum.id]: http(),
1414
[arbitrumSepolia.id]: http(),
1515
},
16-
walletConnectProjectId: '1',
16+
walletConnectProjectId: import.meta.env.VITE_WALLETCONNECT_PROJECT_ID ?? '1',
1717
// Required App Info
1818
appName: 'Graph Tooling',
1919

0 commit comments

Comments
 (0)
Please sign in to comment.