We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ef31ae commit 38371e4Copy full SHA for 38371e4
Assets/Thirdweb/Core/Scripts/Wallet.cs
@@ -20,7 +20,8 @@ namespace Thirdweb
20
/// </summary>
21
public class Wallet : Routable
22
{
23
- public Wallet() : base($"sdk{subSeparator}wallet") { }
+ public Wallet()
24
+ : base($"sdk{subSeparator}wallet") { }
25
26
/// <summary>
27
/// Connect a user's wallet via a given wallet provider
@@ -52,7 +53,7 @@ public async Task<string> Connect(WalletConnection? walletConnection = null)
52
53
}
54
else
55
- if (walletConnection?.provider?.ToString() == "walletConnect")
56
+ if (walletConnection?.provider?.ToString() == "walletConnectV1")
57
58
await WalletConnect.Instance.EnableWalletConnect();
59
0 commit comments