Skip to content

Commit

Permalink
fix: tweak daily overview for discord and twitter
Browse files Browse the repository at this point in the history
  • Loading branch information
CumpsD committed Aug 23, 2024
1 parent dddcbbf commit 094f623
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ private void ProcessDailySwapOverviewInfo(DailySwapOverviewInfo dailySwapOvervie

text.AppendLine(
$"{emojis[i]} " +
$"**{swap.DepositAmountFormatted} {swap.SourceAsset}** (*${swap.DepositValueUsdFormatted}*) " +
$"**{swap.EgressAmountFormatted} {swap.DestinationAsset}** (*${swap.EgressValueUsdFormatted}*) " +
$"**{swap.DepositAmountFormatted} {swap.SourceAsset}** → " +
$"**{swap.EgressAmountFormatted} {swap.DestinationAsset}** " +
$"{(brokerExists ? $"@ **{broker}** " : string.Empty)}" +
$"// **[#{swap.Id}]({_configuration.ExplorerSwapsUrl}{swap.Id})**");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ private void ProcessDailySwapOverviewInfo(DailySwapOverviewInfo dailySwapOvervie

text.AppendLine(
$"{emojis[i]} " +
$"{swap.DepositAmountFormatted} ${swap.SourceAsset} (${swap.DepositValueUsdFormatted}) " +
$"{swap.EgressAmountFormatted} ${swap.DestinationAsset} (${swap.EgressValueUsdFormatted}) " +
$"{swap.DepositAmountFormatted} ${swap.SourceAsset}" +
$"{swap.EgressAmountFormatted} ${swap.DestinationAsset} " +
$"{(brokerExists ? $"@ {name}" : string.Empty)}");
}

Expand Down

0 comments on commit 094f623

Please sign in to comment.