Fix leaderboard (#3)

This commit is contained in:
Oda
2024-07-20 20:38:40 +07:00
committed by GitHub
parent 029ba5f40e
commit a43e560d3a
8 changed files with 235 additions and 71 deletions

View File

@@ -23,7 +23,7 @@ public static class DiscordHelpers
var embed = new EmbedBuilder
{
Author = new EmbedAuthorBuilder() { Name = "GMX" },
Author = new EmbedAuthorBuilder() { Name = "GMX v2" },
Title = $"{title} {DateTime.UtcNow:d}",
Color = Color.Gold,
Fields = fields,
@@ -88,7 +88,7 @@ public static class DiscordHelpers
private static string GetExplorerUrl(string key)
{
return $"https://www.tradao.xyz/#/user/{key}/1";
return $"https://www.tradao.xyz/#/user/{key}/arb-gmx-v2/";
}
internal static Embed GetTradesEmbed(List<Trade> trades, string title)