Skip to content

Commit d97e8d4

Browse files
committed
feat: Update Input config params
Signed-off-by: Gaurav Goel <[email protected]>
1 parent 472f1fb commit d97e8d4

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Assets/Plugins/Web3AuthSDK/Types/AuthConnectionConfig.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
public string description { get; set; }
66
public string clientId { get; set; }
77
public string groupedAuthConnectionId { get; set; }
8-
public string verifierSubIdentifier { get; set; }
98
public string logoHover { get; set; }
109
public string logoLight { get; set; }
1110
public string logoDark { get; set; }

Assets/Plugins/Web3AuthSDK/Types/LoginParams.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
public class LoginParams
44
{
55
public AuthConnection authConnection { get; set; }
6+
public string authConnectionId { get; set; }
7+
public string groupedAuthConnectionId { get; set; }
68
public string dappShare { get; set; }
79
public ExtraLoginOptions extraLoginOptions { get; set; }
810
public Uri redirectUrl { get; set; }

Assets/Plugins/Web3AuthSDK/Types/Web3AuthOptions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ public string sdkUrl {
2525
public string walletSdkUrl {
2626
get {
2727
if (authBuildEnv == Web3Auth.BuildEnv.STAGING)
28-
return "https://staging-wallet.web3auth.io/v3";
28+
return "https://staging-wallet.web3auth.io/v4";
2929
else if (authBuildEnv == Web3Auth.BuildEnv.TESTING)
3030
return "https://develop-wallet.web3auth.io";
3131
else
32-
return "https://wallet.web3auth.io/v3";
32+
return "https://wallet.web3auth.io/v4";
3333
}
3434
set { }
3535
}

0 commit comments

Comments
 (0)