1
- using System ;
1
+ using System ;
2
2
using System . Collections . Generic ;
3
3
#nullable enable
4
- #pragma warning disable CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.
5
4
6
5
public class Web3AuthOptions {
7
6
public string clientId { get ; set ; }
@@ -12,20 +11,31 @@ public class Web3AuthOptions {
12
11
public string sdkUrl {
13
12
get {
14
13
if ( buildEnv == Web3Auth . BuildEnv . STAGING )
15
- return "https://staging-auth.web3auth.io/{openLoginVersion} " ;
14
+ return "https://staging-auth.web3auth.io/v8 " ;
16
15
else if ( buildEnv == Web3Auth . BuildEnv . TESTING )
17
16
return "https://develop-auth.web3auth.io" ;
18
17
else
19
- return "https://auth.web3auth.io/{openLoginVersion}" ;
18
+ return "https://auth.web3auth.io/v8" ;
20
19
}
21
20
set { }
22
21
}
23
- public const string openLoginVersion = "v6" ;
24
22
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
+ }
25
34
public WhiteLabelData ? whiteLabel { get ; set ; }
26
35
public Dictionary < string , LoginConfigItem > ? loginConfig { get ; set ; }
27
36
public bool ? useCoreKitKey { get ; set ; } = false ;
28
37
public Web3Auth . ChainNamespace ? chainNamespace { get ; set ; } = Web3Auth . ChainNamespace . EIP155 ;
29
38
public MfaSettings ? mfaSettings { get ; set ; } = null ;
30
39
public int sessionTime { get ; set ; } = 86400 ;
40
+ public ChainConfig ? chainConfig { get ; set ; }
31
41
}
0 commit comments