Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update default relay url #199

Merged
merged 1 commit into from
Jun 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading