Skip to content

Commit

Permalink
Merge pull request #199 from WalletConnect/chore/relay-url
Browse files Browse the repository at this point in the history
chore: update default relay url
  • Loading branch information
skibitsky authored Jun 21, 2024
2 parents 1714232 + 07e48a8 commit ef40c94
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Tests/WalletConnectSharp.Network.Tests/RelayTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class RelayTests
private static readonly JsonRpcRequest<TopicData> TEST_BAD_IRN_REQUEST =
new JsonRpcRequest<TopicData>(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");
Expand Down
2 changes: 1 addition & 1 deletion Tests/WalletConnectSharp.Tests.Common/TestValues.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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");

Expand Down
2 changes: 1 addition & 1 deletion WalletConnectSharp.Core/Controllers/Relayer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class Relayer : IRelayer
/// <summary>
/// The default relay server URL used when no relay URL is given
/// </summary>
public static readonly string DEFAULT_RELAY_URL = "wss://relay.walletconnect.com";
public static readonly string DEFAULT_RELAY_URL = "wss://relay.walletconnect.org";

/// <summary>
/// The Name of this Relayer module
Expand Down

0 comments on commit ef40c94

Please sign in to comment.