Change announcement to $2.5 instead of $5 and add image to embed

This commit is contained in:
Wizzard 2024-03-13 23:01:55 -04:00
parent 9a07443b38
commit 400d0b4dfe
2 changed files with 11 additions and 7 deletions

View File

@ -2,3 +2,4 @@ DISCORD_BOT_TOKEN=asghjkhagsahjklsg.asgkljajkgslasklgjkaslglgaslgasl
SOLANA_PRICE_CHANNEL_ID=90812589702150978578625187125
ANNOUNCEMENTS_CHANNEL_ID=187290509872150987215
IMAGE_URL=https://image.com/image.png

13
main.js
View File

@ -40,7 +40,7 @@ async function immediatePriceCheckAndAnnounce() {
const lastKnownPrice = solanaData ? solanaData.price : null;
const currentPrice = await fetchSolanaPrice();
if (currentPrice && lastKnownPrice !== null && (parseFloat(currentPrice) - lastKnownPrice >= 5)) {
if (currentPrice && lastKnownPrice !== null && (parseFloat(currentPrice) - lastKnownPrice >= 2.5)) {
const announcementsChannel = await client.channels.fetch(announcementsChannelId);
await announcementsChannel.send(`@everyone Significant Solana price increase detected! Previous recorded price: $${lastKnownPrice}. Current price: $${currentPrice}.`);
}
@ -61,9 +61,12 @@ async function checkPriceContinuously() {
const embed = new EmbedBuilder()
.setColor(0x0099ff)
.setTitle('Solana (SOL) Price')
.setDescription(`$${price}`)
.setTimestamp();
.setThumbnail('https://solana.com/src/img/branding/solanaLogoMark.png')
.setTitle('Solana (SOL) Price Update')
.setDescription(`**Current Price: \`$${price}\`**`)
.addFields({ name: '💰 Current Price', value: `**\`$${price}\`**`, inline: false })
.setTimestamp()
.setImage(process.env.IMAGE_URL)
if (lastPriceMessageId) {
try {
@ -79,7 +82,7 @@ async function checkPriceContinuously() {
lastPriceMessageId = sentMessage.id;
}
if (lastKnownPriceAtStartup !== null && (parseFloat(price) - lastKnownPriceAtStartup >= 5)) {
if (lastKnownPriceAtStartup !== null && (parseFloat(price) - lastKnownPriceAtStartup >= 2.5)) {
const announcementsChannel = await client.channels.fetch(announcementsChannelId);
await announcementsChannel.send(`@everyonle Solana price has increased significantly! Current price: $${price}`);
lastKnownPriceAtStartup = parseFloat(price);