Skip to content

Commit a064c45

Browse files
✨ Update Web3Auth SDK to 3.0.0 (#226)
* ✨ Update Web3Auth SDK to 3.0.0 * 🔖 Bump SDK version 1.2.5
1 parent fe5466e commit a064c45

12 files changed

+232
-41
lines changed

Runtime/Plugins/Web3AuthSDK/Api/Web3AuthApi.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
public class Web3AuthApi
99
{
1010
static Web3AuthApi instance;
11-
static string baseAddress = "https://broadcast-server.tor.us";
11+
static string baseAddress = "https://session.web3auth.io";
1212

1313
public static Web3AuthApi getInstance()
1414
{
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
using System.Collections.Generic;
2+
#nullable enable
3+
public class ChainConfig {
4+
public Web3Auth.ChainNamespace? chainNamespace { get; set; } = Web3Auth.ChainNamespace.EIP155;
5+
public int decimals { get; set; } = 18;
6+
public string blockExplorerUrl { get; set; } = null;
7+
public string chainId { get; set; }
8+
public string displayName { get; set; } = null;
9+
public string logo { get; set; } = null;
10+
public string rpcTarget { get; set; }
11+
public string ticker { get; set; } = null;
12+
public string tickerName { get; set; } = null;
13+
}

Runtime/Plugins/Web3AuthSDK/Types/ChainConfig.cs.meta

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,14 @@
11
using System;
2-
using UnityEngine.Scripting;
32

4-
[Preserve]
5-
[Serializable]
63
public class LoginParams
74
{
8-
[Preserve]
95
public Provider loginProvider { get; set; }
10-
[Preserve]
116
public string dappShare { get; set; }
12-
[Preserve]
137
public ExtraLoginOptions extraLoginOptions { get; set; }
14-
[Preserve]
158
public Uri redirectUrl { get; set; }
16-
[Preserve]
179
public string appState { get; set; }
18-
[Preserve]
1910
public MFALevel mfaLevel { get; set; }
20-
[Preserve]
11+
2112
public Curve curve { get; set; } = Curve.SECP256K1;
13+
public string dappUrl { get; set; }
2214
}
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,26 @@
1-
#pragma warning disable CS8632 // The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.
2-
31
public class MfaSettings
42
{
53
public MfaSetting? deviceShareFactor { get; set; }
64
public MfaSetting? backUpShareFactor { get; set; }
75
public MfaSetting? socialBackupFactor { get; set; }
86
public MfaSetting? passwordFactor { get; set; }
7+
public MfaSetting? passkeysFactor { get; set; }
8+
public MfaSetting? authenticatorFactor { get; set; }
99

1010
// Constructors
1111
public MfaSettings(
1212
MfaSetting? deviceShareFactor,
1313
MfaSetting? backUpShareFactor,
1414
MfaSetting? socialBackupFactor,
15-
MfaSetting? passwordFactor)
15+
MfaSetting? passwordFactor,
16+
MfaSetting? passkeysFactor,
17+
MfaSetting? authenticatorFactor)
1618
{
1719
this.deviceShareFactor = deviceShareFactor;
1820
this.backUpShareFactor = backUpShareFactor;
1921
this.socialBackupFactor = socialBackupFactor;
2022
this.passwordFactor = passwordFactor;
23+
this.passkeysFactor = passkeysFactor;
24+
this.authenticatorFactor = authenticatorFactor;
2125
}
2226
}

Runtime/Plugins/Web3AuthSDK/Types/Provider.cs

+5-1
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,9 @@ public enum Provider
3838
[EnumMember(Value = "jwt")]
3939
JWT,
4040
[EnumMember(Value = "CUSTOM_VERIFIER")]
41-
CUSTOM_VERIFIER
41+
CUSTOM_VERIFIER,
42+
[EnumMember(Value = "sms_passwordless")]
43+
SMS_PASSWORDLESS,
44+
[EnumMember(Value = "farcaster")]
45+
FARCASTER
4246
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
public class SessionResponse
2+
{
3+
public string sessionId;
4+
}

Runtime/Plugins/Web3AuthSDK/Types/SessionResponse.cs.meta

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Runtime/Plugins/Web3AuthSDK/Types/UserInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System;
1+
using System;
22
using UnityEngine.Scripting;
33

44
[Serializable]
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
using System;
1+
using System;
22
using System.Collections.Generic;
33
#nullable enable
4-
#pragma warning disable CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.
54

65
public class Web3AuthOptions {
76
public string clientId { get; set; }
@@ -12,20 +11,31 @@ public class Web3AuthOptions {
1211
public string sdkUrl {
1312
get {
1413
if (buildEnv == Web3Auth.BuildEnv.STAGING)
15-
return "https://staging-auth.web3auth.io/{openLoginVersion}";
14+
return "https://staging-auth.web3auth.io/v8";
1615
else if (buildEnv == Web3Auth.BuildEnv.TESTING)
1716
return "https://develop-auth.web3auth.io";
1817
else
19-
return "https://auth.web3auth.io/{openLoginVersion}";
18+
return "https://auth.web3auth.io/v8";
2019
}
2120
set { }
2221
}
23-
public const string openLoginVersion = "v6";
2422

23+
public string walletSdkUrl {
24+
get {
25+
if (buildEnv == Web3Auth.BuildEnv.STAGING)
26+
return "https://staging-wallet.web3auth.io/v2";
27+
else if (buildEnv == Web3Auth.BuildEnv.TESTING)
28+
return "https://develop-wallet.web3auth.io";
29+
else
30+
return "https://wallet.web3auth.io/v2";
31+
}
32+
set { }
33+
}
2534
public WhiteLabelData? whiteLabel { get; set; }
2635
public Dictionary<string, LoginConfigItem>? loginConfig { get; set; }
2736
public bool? useCoreKitKey { get; set; } = false;
2837
public Web3Auth.ChainNamespace? chainNamespace { get; set; } = Web3Auth.ChainNamespace.EIP155;
2938
public MfaSettings? mfaSettings { get; set; } = null;
3039
public int sessionTime { get; set; } = 86400;
40+
public ChainConfig? chainConfig { get; set; }
3141
}

0 commit comments

Comments
 (0)