From 47aa6fe782f37496396fb24ac3993f1d92815ab5 Mon Sep 17 00:00:00 2001 From: Gaurav Goel Date: Wed, 4 Sep 2024 10:14:24 +0530 Subject: [PATCH] feat: update auth-services to v9 and wallet-services to v3 Signed-off-by: Gaurav Goel --- Assets/Plugins/Web3AuthSDK/Types/Web3AuthOptions.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Assets/Plugins/Web3AuthSDK/Types/Web3AuthOptions.cs b/Assets/Plugins/Web3AuthSDK/Types/Web3AuthOptions.cs index 1b32f20..e678fb5 100644 --- a/Assets/Plugins/Web3AuthSDK/Types/Web3AuthOptions.cs +++ b/Assets/Plugins/Web3AuthSDK/Types/Web3AuthOptions.cs @@ -11,11 +11,11 @@ public class Web3AuthOptions { public string sdkUrl { get { if (buildEnv == Web3Auth.BuildEnv.STAGING) - return "https://staging-auth.web3auth.io/v8"; + return "https://staging-auth.web3auth.io/v9"; else if (buildEnv == Web3Auth.BuildEnv.TESTING) return "https://develop-auth.web3auth.io"; else - return "https://auth.web3auth.io/v8"; + return "https://auth.web3auth.io/v9"; } set { } } @@ -23,11 +23,11 @@ public string sdkUrl { public string walletSdkUrl { get { if (buildEnv == Web3Auth.BuildEnv.STAGING) - return "https://staging-wallet.web3auth.io/v2"; + return "https://staging-wallet.web3auth.io/v3"; else if (buildEnv == Web3Auth.BuildEnv.TESTING) return "https://develop-wallet.web3auth.io"; else - return "https://wallet.web3auth.io/v2"; + return "https://wallet.web3auth.io/v3"; } set { } }