Skip to content

Commit

Permalink
feat: update auth-services to v9 and wallet-services to v3
Browse files Browse the repository at this point in the history
Signed-off-by: Gaurav Goel <gaurav@tor.us>
  • Loading branch information
grvgoel81 authored and Gaurav Goel committed Sep 4, 2024
1 parent 7c21883 commit 47aa6fe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Assets/Plugins/Web3AuthSDK/Types/Web3AuthOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,23 @@ 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 { }
}

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 { }
}
Expand Down

0 comments on commit 47aa6fe

Please sign in to comment.