diff --git a/Tests/WalletConnectSharp.Network.Tests/RelayTests.cs b/Tests/WalletConnectSharp.Network.Tests/RelayTests.cs index 806cb63..4a85c7e 100644 --- a/Tests/WalletConnectSharp.Network.Tests/RelayTests.cs +++ b/Tests/WalletConnectSharp.Network.Tests/RelayTests.cs @@ -17,7 +17,7 @@ public class RelayTests private static readonly JsonRpcRequest TEST_BAD_IRN_REQUEST = new JsonRpcRequest(RelayProtocols.DefaultProtocol.Subscribe, new TopicData()); - private static readonly string DEFAULT_GOOD_WS_URL = "wss://relay.walletconnect.com"; + private static readonly string DEFAULT_GOOD_WS_URL = "wss://relay.walletconnect.org"; private static readonly string ENVIRONMENT_DEFAULT_GOOD_WS_URL = Environment.GetEnvironmentVariable("RELAY_ENDPOINT"); diff --git a/Tests/WalletConnectSharp.Tests.Common/TestValues.cs b/Tests/WalletConnectSharp.Tests.Common/TestValues.cs index e419cba..86a5b9c 100644 --- a/Tests/WalletConnectSharp.Tests.Common/TestValues.cs +++ b/Tests/WalletConnectSharp.Tests.Common/TestValues.cs @@ -9,7 +9,7 @@ public static class TestValues ? EnvironmentProjectId : DefaultProjectId; - private const string DefaultRelayUrl = "wss://relay.walletconnect.com"; + private const string DefaultRelayUrl = "wss://relay.walletconnect.org"; private static readonly string EnvironmentRelayUrl = Environment.GetEnvironmentVariable("RELAY_ENDPOINT"); diff --git a/WalletConnectSharp.Core/Controllers/Relayer.cs b/WalletConnectSharp.Core/Controllers/Relayer.cs index 3ca1ddf..8d63840 100644 --- a/WalletConnectSharp.Core/Controllers/Relayer.cs +++ b/WalletConnectSharp.Core/Controllers/Relayer.cs @@ -22,7 +22,7 @@ public class Relayer : IRelayer /// /// The default relay server URL used when no relay URL is given /// - public static readonly string DEFAULT_RELAY_URL = "wss://relay.walletconnect.com"; + public static readonly string DEFAULT_RELAY_URL = "wss://relay.walletconnect.org"; /// /// The Name of this Relayer module