Skip to content

Commit

Permalink
feat: add secp256k1 curve by default
Browse files Browse the repository at this point in the history
Signed-off-by: Gaurav Goel <[email protected]>
  • Loading branch information
grvgoel81 authored and Gaurav Goel committed Nov 6, 2023
1 parent 9653bd2 commit 17be1a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Assets/Plugins/Web3AuthSDK/Samples/Web3AuthSample.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ void Start()
}
*/
clientId = "BPi5PB_UiIZ-cPz1GtV5i1I2iOSOHuimiXBI0e-Oe_u6X3oVAbCiAZOTEBtTXw4tsluTITPqA8zMsfxIKMjiqNQ",
buildEnv = BuildEnv.PRODUCTION,
buildEnv = BuildEnv.TESTING,
redirectUrl = new Uri("torusapp://com.torus.Web3AuthUnity/auth"),
network = Web3Auth.Network.SAPPHIRE_MAINNET,
sessionTime = 86400
Expand Down
2 changes: 1 addition & 1 deletion Assets/Plugins/Web3AuthSDK/Types/LoginParams.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ public class LoginParams
public string appState { get; set; }
public MFALevel mfaLevel { get; set; }

public Curve curve { get; set; }
public Curve curve { get; set; } = Curve.SECP256K1;
}

0 comments on commit 17be1a6

Please sign in to comment.