Skip to content

Commit 17be1a6

Browse files
committedNov 6, 2023
feat: add secp256k1 curve by default
Signed-off-by: Gaurav Goel <[email protected]>
1 parent 9653bd2 commit 17be1a6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎Assets/Plugins/Web3AuthSDK/Samples/Web3AuthSample.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ void Start()
7373
}
7474
*/
7575
clientId = "BPi5PB_UiIZ-cPz1GtV5i1I2iOSOHuimiXBI0e-Oe_u6X3oVAbCiAZOTEBtTXw4tsluTITPqA8zMsfxIKMjiqNQ",
76-
buildEnv = BuildEnv.PRODUCTION,
76+
buildEnv = BuildEnv.TESTING,
7777
redirectUrl = new Uri("torusapp://com.torus.Web3AuthUnity/auth"),
7878
network = Web3Auth.Network.SAPPHIRE_MAINNET,
7979
sessionTime = 86400

‎Assets/Plugins/Web3AuthSDK/Types/LoginParams.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ public class LoginParams
99
public string appState { get; set; }
1010
public MFALevel mfaLevel { get; set; }
1111

12-
public Curve curve { get; set; }
12+
public Curve curve { get; set; } = Curve.SECP256K1;
1313
}

0 commit comments

Comments
 (0)
Please sign in to comment.