Skip to content

Commit

Permalink
Testing new icons
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanAkkerman committed Nov 8, 2023
1 parent e042059 commit 327daaa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file added img/icons/coingecko.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/cogs/loops/nfts.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ async def gc_trending(self):
df["NFT"] = "[" + df["name"] + "]" + "(" + df["url"] + ")"

df["price"] = (
df["floor_price_in_native_currency"].astype(str)
df["floor_price_in_native_currency"].round(3).astype(str)
+ " "
+ df["native_currency_symbol"].str.upper()
)
Expand Down Expand Up @@ -200,7 +200,7 @@ async def gc_trending(self):

e.set_footer(
text="\u200b",
icon_url="https://github.com/StephanAkkerman/fintwit-bot/blob/main/img/icons/coingecko.ico",
icon_url="https://raw.githubusercontent.com/StephanAkkerman/fintwit-bot/main/img/icons/coingecko.png",
)

await self.trending_channel.send(embed=e)
Expand Down

0 comments on commit 327daaa

Please sign in to comment.